@raindrop-ai/ai-sdk 0.2.1 → 0.3.0
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/README.md +114 -0
- package/dist/{chunk-V636SYSR.mjs → chunk-GMY7QXIQ.mjs} +824 -18
- package/dist/{index-BUWOlY-2.d.mts → index-BqXHiknB.d.mts} +532 -1
- package/dist/{index-BUWOlY-2.d.ts → index-BqXHiknB.d.ts} +532 -1
- package/dist/index.browser.d.mts +532 -1
- package/dist/index.browser.d.ts +532 -1
- package/dist/index.browser.js +836 -17
- package/dist/index.browser.mjs +824 -18
- package/dist/index.node.d.mts +1 -1
- package/dist/index.node.d.ts +1 -1
- package/dist/index.node.js +836 -17
- package/dist/index.node.mjs +1 -1
- package/dist/index.workers.d.mts +1 -1
- package/dist/index.workers.d.ts +1 -1
- package/dist/index.workers.js +836 -17
- package/dist/index.workers.mjs +1 -1
- package/package.json +2 -2
package/dist/index.browser.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// ../core/dist/chunk-
|
|
1
|
+
// ../core/dist/chunk-YUIXRQWN.js
|
|
2
2
|
function normalizeFeatureFlags(input) {
|
|
3
3
|
if (Array.isArray(input)) {
|
|
4
4
|
return Object.fromEntries(input.map((name) => [name, "true"]));
|
|
@@ -61,6 +61,311 @@ function base64Encode(bytes) {
|
|
|
61
61
|
}
|
|
62
62
|
return out;
|
|
63
63
|
}
|
|
64
|
+
function base64ToHex(value) {
|
|
65
|
+
if (!value) return "";
|
|
66
|
+
const maybeBuffer = globalThis.Buffer;
|
|
67
|
+
if (maybeBuffer) {
|
|
68
|
+
return maybeBuffer.from(value, "base64").toString("hex");
|
|
69
|
+
}
|
|
70
|
+
const atobFn = globalThis.atob;
|
|
71
|
+
if (typeof atobFn !== "function") return "";
|
|
72
|
+
try {
|
|
73
|
+
const binary = atobFn(value);
|
|
74
|
+
let hex = "";
|
|
75
|
+
for (let i = 0; i < binary.length; i++) {
|
|
76
|
+
hex += (binary.charCodeAt(i) & 255).toString(16).padStart(2, "0");
|
|
77
|
+
}
|
|
78
|
+
return hex;
|
|
79
|
+
} catch (e) {
|
|
80
|
+
return "";
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
var HANDOFF_ATTRIBUTE_SUFFIXES = {
|
|
84
|
+
mode: "raindrop.handoff.mode",
|
|
85
|
+
childEventId: "raindrop.handoff.childEventId",
|
|
86
|
+
parentEventId: "raindrop.handoff.parentEventId",
|
|
87
|
+
parentSpanId: "raindrop.handoff.parentSpanId",
|
|
88
|
+
name: "raindrop.handoff.name",
|
|
89
|
+
terminal: "raindrop.handoff.terminal",
|
|
90
|
+
agentRole: "raindrop.agent.role"
|
|
91
|
+
};
|
|
92
|
+
var HANDOFF_ATTRIBUTE_PREFIXES = [
|
|
93
|
+
"ai.telemetry.metadata.",
|
|
94
|
+
"ai.settings.context.",
|
|
95
|
+
""
|
|
96
|
+
];
|
|
97
|
+
var AI_SDK_METADATA_PREFIX = "ai.telemetry.metadata.";
|
|
98
|
+
var DETACHED_MODE = "detached";
|
|
99
|
+
var SUBAGENT_AGENT_ROLE = "subagent";
|
|
100
|
+
var HANDOFF_TERMINAL_CANCELLED = "cancelled";
|
|
101
|
+
var TOOL_EVENTS_SUFFIX = "raindrop.toolEvents";
|
|
102
|
+
var TOOL_EVENTS_ALLOW = "allow";
|
|
103
|
+
var SUBAGENT_ABORT_OPERATION_ID = "ai.subagent.failed";
|
|
104
|
+
var SUBAGENT_ABORT_SPAN_NAME = SUBAGENT_ABORT_OPERATION_ID;
|
|
105
|
+
var DEFAULT_DISPATCH_SPAN_NAME = "launch_subagent";
|
|
106
|
+
var HANDOFF_TERMINAL_PROPERTY_KEY = HANDOFF_ATTRIBUTE_SUFFIXES.terminal;
|
|
107
|
+
function defined(entries) {
|
|
108
|
+
const out = {};
|
|
109
|
+
for (const [key, value] of Object.entries(entries)) {
|
|
110
|
+
if (typeof value === "string" && value.trim().length > 0) out[key] = value;
|
|
111
|
+
}
|
|
112
|
+
return out;
|
|
113
|
+
}
|
|
114
|
+
function detachedDispatchMetadata(dispatch) {
|
|
115
|
+
return defined({
|
|
116
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.mode]: DETACHED_MODE,
|
|
117
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.childEventId]: dispatch.childEventId,
|
|
118
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.name]: dispatch.name
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
function detachedChildMetadata(link) {
|
|
122
|
+
return defined({
|
|
123
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.parentEventId]: link.parentEventId,
|
|
124
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.parentSpanId]: link.parentSpanId,
|
|
125
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.name]: link.name,
|
|
126
|
+
[HANDOFF_ATTRIBUTE_SUFFIXES.agentRole]: SUBAGENT_AGENT_ROLE
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
function cancelledTerminalMetadata() {
|
|
130
|
+
return { [HANDOFF_ATTRIBUTE_SUFFIXES.terminal]: HANDOFF_TERMINAL_CANCELLED };
|
|
131
|
+
}
|
|
132
|
+
function cancelledTerminalAttributes() {
|
|
133
|
+
const bare = cancelledTerminalMetadata();
|
|
134
|
+
return { ...bare, ...withMetadataPrefix(bare) };
|
|
135
|
+
}
|
|
136
|
+
function toolEventsAllowMetadata() {
|
|
137
|
+
return { [TOOL_EVENTS_SUFFIX]: TOOL_EVENTS_ALLOW };
|
|
138
|
+
}
|
|
139
|
+
function withMetadataPrefix(metadata) {
|
|
140
|
+
const out = {};
|
|
141
|
+
for (const [key, value] of Object.entries(metadata)) {
|
|
142
|
+
out[key.startsWith(AI_SDK_METADATA_PREFIX) ? key : `${AI_SDK_METADATA_PREFIX}${key}`] = value;
|
|
143
|
+
}
|
|
144
|
+
return out;
|
|
145
|
+
}
|
|
146
|
+
function readHandoffField(metadata, suffix) {
|
|
147
|
+
for (const prefix of HANDOFF_ATTRIBUTE_PREFIXES) {
|
|
148
|
+
const value = metadata[`${prefix}${suffix}`];
|
|
149
|
+
if (typeof value === "string" && value.trim().length > 0) return value.trim();
|
|
150
|
+
}
|
|
151
|
+
return void 0;
|
|
152
|
+
}
|
|
153
|
+
function readDetachedChildLink(metadata) {
|
|
154
|
+
if (!metadata) return void 0;
|
|
155
|
+
const parentEventId = readHandoffField(metadata, HANDOFF_ATTRIBUTE_SUFFIXES.parentEventId);
|
|
156
|
+
if (!parentEventId) return void 0;
|
|
157
|
+
return {
|
|
158
|
+
parentEventId,
|
|
159
|
+
parentSpanId: readHandoffField(metadata, HANDOFF_ATTRIBUTE_SUFFIXES.parentSpanId),
|
|
160
|
+
name: readHandoffField(metadata, HANDOFF_ATTRIBUTE_SUFFIXES.name)
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
var BAGGAGE_KEYS = {
|
|
164
|
+
eventId: "raindrop-event-id",
|
|
165
|
+
childEventId: "raindrop-child-event-id",
|
|
166
|
+
name: "raindrop-handoff-name",
|
|
167
|
+
convoId: "raindrop-convo-id",
|
|
168
|
+
userId: "raindrop-user-id",
|
|
169
|
+
// The dispatch span and its trace, carried as fields as well as in
|
|
170
|
+
// `traceparent`. Not redundant: OTel's HTTP instrumentations rewrite
|
|
171
|
+
// `traceparent` from whatever span is current as the request goes out, so by
|
|
172
|
+
// the time the child reads it the ids name the HTTP client span and its trace
|
|
173
|
+
// instead of the dispatch. The child would then point its reverse reference at
|
|
174
|
+
// a span the launcher's UI does not know as a dispatch. A field states which
|
|
175
|
+
// span it means rather than meaning "whoever wrote this header last".
|
|
176
|
+
dispatchSpanId: "raindrop-dispatch-span-id",
|
|
177
|
+
traceId: "raindrop-trace-id"
|
|
178
|
+
};
|
|
179
|
+
var TRACEPARENT_HEADER = "traceparent";
|
|
180
|
+
var BAGGAGE_HEADER = "baggage";
|
|
181
|
+
var W3C_TRACE_ID = /^[0-9a-f]{32}$/;
|
|
182
|
+
var W3C_SPAN_ID = /^[0-9a-f]{16}$/;
|
|
183
|
+
function isW3CTraceId(value) {
|
|
184
|
+
return value !== void 0 && W3C_TRACE_ID.test(value);
|
|
185
|
+
}
|
|
186
|
+
function isW3CSpanId(value) {
|
|
187
|
+
return value !== void 0 && W3C_SPAN_ID.test(value);
|
|
188
|
+
}
|
|
189
|
+
var warnedNonConformantIds = false;
|
|
190
|
+
function warnNonConformantIdsOnce(traceId, spanId) {
|
|
191
|
+
if (warnedNonConformantIds) return;
|
|
192
|
+
warnedNonConformantIds = true;
|
|
193
|
+
console.warn(
|
|
194
|
+
`[raindrop] hand-off carrier ids are not W3C-shaped (traceId="${traceId}", spanId="${spanId}"). The child still reports as its own event, but its reverse reference names a span id the backend does not store, so the link back to the launcher will not resolve. A LangSmith carrier reads this way \u2014 its run ids are UUIDs; propagate Raindrop's own carrier (toHeaders) to link.`
|
|
195
|
+
);
|
|
196
|
+
}
|
|
197
|
+
var HANDOFF_HEADER = "x-raindrop-handoff";
|
|
198
|
+
var LANGSMITH_TRACE_HEADER = "langsmith-trace";
|
|
199
|
+
var LANGSMITH_METADATA_BAGGAGE_KEY = "langsmith-metadata";
|
|
200
|
+
function encodeBaggage(entries) {
|
|
201
|
+
return Object.entries(entries).filter((entry) => Boolean(entry[1])).map(([key, value]) => `${key}=${encodeURIComponent(value)}`).join(",");
|
|
202
|
+
}
|
|
203
|
+
function decodeBaggage(header) {
|
|
204
|
+
if (!header) return {};
|
|
205
|
+
const parsed = {};
|
|
206
|
+
for (const part of header.split(",")) {
|
|
207
|
+
const [rawKey, ...rest] = part.split("=");
|
|
208
|
+
if (!rawKey || rest.length === 0) continue;
|
|
209
|
+
const key = rawKey.trim();
|
|
210
|
+
let value;
|
|
211
|
+
try {
|
|
212
|
+
value = decodeURIComponent(rest.join("=").trim());
|
|
213
|
+
} catch (e) {
|
|
214
|
+
value = rest.join("=").trim();
|
|
215
|
+
}
|
|
216
|
+
if (key in parsed && parsed[key] !== value) throw new ConflictingCarrierError(key);
|
|
217
|
+
parsed[key] = value;
|
|
218
|
+
}
|
|
219
|
+
return parsed;
|
|
220
|
+
}
|
|
221
|
+
function carrierBaggage(carrier) {
|
|
222
|
+
return {
|
|
223
|
+
[BAGGAGE_KEYS.eventId]: carrier.eventId,
|
|
224
|
+
[BAGGAGE_KEYS.childEventId]: carrier.childEventId,
|
|
225
|
+
[BAGGAGE_KEYS.name]: carrier.name,
|
|
226
|
+
[BAGGAGE_KEYS.convoId]: carrier.convoId,
|
|
227
|
+
[BAGGAGE_KEYS.userId]: carrier.userId,
|
|
228
|
+
[BAGGAGE_KEYS.dispatchSpanId]: carrier.spanId,
|
|
229
|
+
[BAGGAGE_KEYS.traceId]: carrier.traceId
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
function toHeaders(carrier) {
|
|
233
|
+
const fields = encodeBaggage(carrierBaggage(carrier));
|
|
234
|
+
const headers = {
|
|
235
|
+
[BAGGAGE_HEADER]: fields,
|
|
236
|
+
[HANDOFF_HEADER]: fields
|
|
237
|
+
};
|
|
238
|
+
if (isW3CTraceId(carrier.traceId) && isW3CSpanId(carrier.spanId)) {
|
|
239
|
+
headers[TRACEPARENT_HEADER] = `00-${carrier.traceId}-${carrier.spanId}-01`;
|
|
240
|
+
}
|
|
241
|
+
return headers;
|
|
242
|
+
}
|
|
243
|
+
function langsmithStamp() {
|
|
244
|
+
return (/* @__PURE__ */ new Date()).toISOString().replace(/[-:]/g, "").replace(/\.\d+Z$/, "000000");
|
|
245
|
+
}
|
|
246
|
+
function toLangSmithHeaders(carrier) {
|
|
247
|
+
const stamp = langsmithStamp();
|
|
248
|
+
const dottedOrder = `${stamp}Z${carrier.traceId}.${stamp}Z${carrier.spanId}`;
|
|
249
|
+
return {
|
|
250
|
+
[LANGSMITH_TRACE_HEADER]: dottedOrder,
|
|
251
|
+
[BAGGAGE_HEADER]: encodeBaggage({
|
|
252
|
+
[LANGSMITH_METADATA_BAGGAGE_KEY]: JSON.stringify(carrierBaggage(carrier))
|
|
253
|
+
}),
|
|
254
|
+
// Carried here too: a LangSmith-shaped carrier is rewritten in transit
|
|
255
|
+
// exactly like the native one, and an injected `traceparent` is preferred
|
|
256
|
+
// over the dotted order on read.
|
|
257
|
+
[HANDOFF_HEADER]: encodeBaggage(carrierBaggage(carrier))
|
|
258
|
+
};
|
|
259
|
+
}
|
|
260
|
+
function isHeaderLookup(headers) {
|
|
261
|
+
return "get" in headers && typeof headers.get === "function";
|
|
262
|
+
}
|
|
263
|
+
var ConflictingCarrierError = class extends Error {
|
|
264
|
+
};
|
|
265
|
+
function readHeader(headers, name) {
|
|
266
|
+
var _a, _b, _c;
|
|
267
|
+
if (isHeaderLookup(headers)) return (_a = headers.get(name)) != null ? _a : void 0;
|
|
268
|
+
const value = (_c = headers[name]) != null ? _c : (_b = Object.entries(headers).find(([key]) => key.toLowerCase() === name)) == null ? void 0 : _b[1];
|
|
269
|
+
if (!Array.isArray(value)) return value;
|
|
270
|
+
const distinct = new Set(value);
|
|
271
|
+
if (distinct.size > 1) throw new ConflictingCarrierError(name);
|
|
272
|
+
return value[0];
|
|
273
|
+
}
|
|
274
|
+
function readTraceHeader(headers, name) {
|
|
275
|
+
const value = readHeader(headers, name);
|
|
276
|
+
if (!(value == null ? void 0 : value.includes(","))) return value;
|
|
277
|
+
const copies = value.split(",").map((copy) => copy.trim());
|
|
278
|
+
if (new Set(copies).size > 1) throw new ConflictingCarrierError(name);
|
|
279
|
+
return copies[0];
|
|
280
|
+
}
|
|
281
|
+
function fromHeaders(headers) {
|
|
282
|
+
var _a, _b;
|
|
283
|
+
let baggage;
|
|
284
|
+
let handoff;
|
|
285
|
+
let traceparent;
|
|
286
|
+
let langsmithTrace;
|
|
287
|
+
try {
|
|
288
|
+
baggage = decodeBaggage(readHeader(headers, BAGGAGE_HEADER));
|
|
289
|
+
handoff = decodeBaggage(readHeader(headers, HANDOFF_HEADER));
|
|
290
|
+
traceparent = readTraceHeader(headers, TRACEPARENT_HEADER);
|
|
291
|
+
langsmithTrace = readTraceHeader(headers, LANGSMITH_TRACE_HEADER);
|
|
292
|
+
} catch (error) {
|
|
293
|
+
if (error instanceof ConflictingCarrierError) return null;
|
|
294
|
+
throw error;
|
|
295
|
+
}
|
|
296
|
+
const langsmithMetadata = baggage[LANGSMITH_METADATA_BAGGAGE_KEY];
|
|
297
|
+
const nested = langsmithMetadata ? safeParseStringRecord(langsmithMetadata) : {};
|
|
298
|
+
for (const [key, value] of Object.entries(nested)) {
|
|
299
|
+
if (key in baggage && baggage[key] !== value) return null;
|
|
300
|
+
}
|
|
301
|
+
const fields = {
|
|
302
|
+
...baggage,
|
|
303
|
+
...nested,
|
|
304
|
+
// Last, so it wins: the standard headers may have been rewritten in transit
|
|
305
|
+
// by a propagator, this one is only ever written by us.
|
|
306
|
+
...handoff
|
|
307
|
+
};
|
|
308
|
+
let traceId;
|
|
309
|
+
let spanId;
|
|
310
|
+
if (traceparent) {
|
|
311
|
+
const [, parsedTraceId, parsedSpanId] = traceparent.split("-");
|
|
312
|
+
if (isW3CTraceId(parsedTraceId) && isW3CSpanId(parsedSpanId)) {
|
|
313
|
+
traceId = parsedTraceId;
|
|
314
|
+
spanId = parsedSpanId;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
if (!traceId && !spanId && langsmithTrace) {
|
|
318
|
+
const segments = langsmithTrace.split(".");
|
|
319
|
+
traceId = (_a = segments[0]) == null ? void 0 : _a.split("Z").pop();
|
|
320
|
+
spanId = (_b = segments[segments.length - 1]) == null ? void 0 : _b.split("Z").pop();
|
|
321
|
+
}
|
|
322
|
+
traceId = fields[BAGGAGE_KEYS.traceId] || traceId;
|
|
323
|
+
spanId = fields[BAGGAGE_KEYS.dispatchSpanId] || spanId;
|
|
324
|
+
const eventId = fields[BAGGAGE_KEYS.eventId];
|
|
325
|
+
if (!traceId || !spanId || !eventId) return null;
|
|
326
|
+
if (!isW3CTraceId(traceId) || !isW3CSpanId(spanId)) {
|
|
327
|
+
warnNonConformantIdsOnce(traceId, spanId);
|
|
328
|
+
}
|
|
329
|
+
const carrier = { traceId, spanId, eventId };
|
|
330
|
+
const childEventId = fields[BAGGAGE_KEYS.childEventId];
|
|
331
|
+
if (childEventId) carrier.childEventId = childEventId;
|
|
332
|
+
const name = fields[BAGGAGE_KEYS.name];
|
|
333
|
+
if (name) carrier.name = name;
|
|
334
|
+
const convoId = fields[BAGGAGE_KEYS.convoId];
|
|
335
|
+
if (convoId) carrier.convoId = convoId;
|
|
336
|
+
const userId = fields[BAGGAGE_KEYS.userId];
|
|
337
|
+
if (userId) carrier.userId = userId;
|
|
338
|
+
return carrier;
|
|
339
|
+
}
|
|
340
|
+
var UNRESOLVED_CARRIER_WARNING = `[raindrop] resume: headers were supplied but no hand-off carrier was found on them (searched ${HANDOFF_HEADER}, ${TRACEPARENT_HEADER}, ${BAGGAGE_HEADER}). This run reports as an UNLINKED event, and the launcher that dispatched it will stay on "queued" forever because nothing ever references its child. Passing headers means a parent handed off, so no carrier on them is almost certainly a defect: a gateway or proxy stripping ${HANDOFF_HEADER}, a middleware overwriting ${BAGGAGE_HEADER}, a request forwarded without its headers, or a hand-built carrier whose field names do not match. Send every header the launcher's dispatch returned. Logged once per process; pass no headers for a directly-invoked sub-agent to silence it.`;
|
|
341
|
+
var UNRESOLVED_CARRIER_WARNED_KEY = /* @__PURE__ */ Symbol.for("raindrop.handoff.warnedUnresolvedCarrier");
|
|
342
|
+
function warnedHolder() {
|
|
343
|
+
return globalThis;
|
|
344
|
+
}
|
|
345
|
+
function resetUnresolvedCarrierWarning() {
|
|
346
|
+
warnedHolder()[UNRESOLVED_CARRIER_WARNED_KEY] = false;
|
|
347
|
+
}
|
|
348
|
+
function warnUnresolvedCarrier(headers, carrier) {
|
|
349
|
+
if (carrier) return;
|
|
350
|
+
if (!headers) return;
|
|
351
|
+
const holder = warnedHolder();
|
|
352
|
+
if (holder[UNRESOLVED_CARRIER_WARNED_KEY]) return;
|
|
353
|
+
holder[UNRESOLVED_CARRIER_WARNED_KEY] = true;
|
|
354
|
+
console.warn(UNRESOLVED_CARRIER_WARNING);
|
|
355
|
+
}
|
|
356
|
+
function safeParseStringRecord(raw) {
|
|
357
|
+
try {
|
|
358
|
+
const parsed = JSON.parse(raw);
|
|
359
|
+
if (parsed === null || typeof parsed !== "object" || Array.isArray(parsed)) return {};
|
|
360
|
+
const result = {};
|
|
361
|
+
for (const [key, value] of Object.entries(parsed)) {
|
|
362
|
+
if (typeof value === "string") result[key] = value;
|
|
363
|
+
}
|
|
364
|
+
return result;
|
|
365
|
+
} catch (e) {
|
|
366
|
+
return {};
|
|
367
|
+
}
|
|
368
|
+
}
|
|
64
369
|
function runWithTracingSuppressed(fn) {
|
|
65
370
|
const hook = globalThis.RAINDROP_SUPPRESS_TRACING;
|
|
66
371
|
if (typeof hook !== "function") return fn();
|
|
@@ -1548,7 +1853,7 @@ async function* asyncGeneratorWithCurrent(span, gen) {
|
|
|
1548
1853
|
// package.json
|
|
1549
1854
|
var package_default = {
|
|
1550
1855
|
name: "@raindrop-ai/ai-sdk",
|
|
1551
|
-
version: "0.
|
|
1856
|
+
version: "0.3.0"};
|
|
1552
1857
|
|
|
1553
1858
|
// src/internal/version.ts
|
|
1554
1859
|
var libraryName = package_default.name;
|
|
@@ -2436,6 +2741,353 @@ function runWithParentToolContext(ctx, fn) {
|
|
|
2436
2741
|
return getStorage2().run(ctx, fn);
|
|
2437
2742
|
}
|
|
2438
2743
|
|
|
2744
|
+
// src/internal/subagents.ts
|
|
2745
|
+
var SUBAGENT_CANCELLED_OUTPUT = "Cancelled before producing a result.";
|
|
2746
|
+
var SUBAGENT_ABORTED_OUTPUT = "Aborted before producing a result.";
|
|
2747
|
+
var SUBAGENT_FAILED_OPERATION_ID = SUBAGENT_ABORT_OPERATION_ID;
|
|
2748
|
+
var MAX_SETTLED_EVENT_IDS = 1024;
|
|
2749
|
+
function isTraceCarrier(value) {
|
|
2750
|
+
const candidate = value;
|
|
2751
|
+
return typeof candidate.traceId === "string" && typeof candidate.spanId === "string" && typeof candidate.eventId === "string";
|
|
2752
|
+
}
|
|
2753
|
+
function attrsFrom(metadata) {
|
|
2754
|
+
return Object.entries(withMetadataPrefix(metadata)).map(([key, value]) => attrString(key, value));
|
|
2755
|
+
}
|
|
2756
|
+
function attrsExact(attributes) {
|
|
2757
|
+
return Object.entries(attributes).map(([key, value]) => attrString(key, value));
|
|
2758
|
+
}
|
|
2759
|
+
function handoffSpanAttrs(link) {
|
|
2760
|
+
if (!link) return [];
|
|
2761
|
+
return attrsFrom(detachedChildMetadata(link));
|
|
2762
|
+
}
|
|
2763
|
+
function subagentNameAttrs(name, link) {
|
|
2764
|
+
if (!name || (link == null ? void 0 : link.name)) return [];
|
|
2765
|
+
return attrsFrom({ [HANDOFF_ATTRIBUTE_SUFFIXES.name]: name });
|
|
2766
|
+
}
|
|
2767
|
+
function cancelledSpanAttrs() {
|
|
2768
|
+
return attrsExact(cancelledTerminalAttributes());
|
|
2769
|
+
}
|
|
2770
|
+
function describeAbortReason(reason) {
|
|
2771
|
+
if (reason instanceof Error) return `Aborted: ${reason.message}`;
|
|
2772
|
+
if (typeof reason === "string" && reason.trim().length > 0) return reason;
|
|
2773
|
+
if (reason === void 0 || reason === null) return SUBAGENT_ABORTED_OUTPUT;
|
|
2774
|
+
const serialized = boundedStringify(reason);
|
|
2775
|
+
return serialized ? `Aborted: ${serialized}` : SUBAGENT_ABORTED_OUTPUT;
|
|
2776
|
+
}
|
|
2777
|
+
function stampOpenSpan(span, metadata) {
|
|
2778
|
+
if (span.endTimeUnixNano) return;
|
|
2779
|
+
span.attributes.push(...attrsFrom(metadata));
|
|
2780
|
+
}
|
|
2781
|
+
function stampOpenSpanExact(span, attributes) {
|
|
2782
|
+
if (span.endTimeUnixNano) return;
|
|
2783
|
+
span.attributes.push(...attrsExact(attributes));
|
|
2784
|
+
}
|
|
2785
|
+
var SubagentApi = class {
|
|
2786
|
+
constructor(opts) {
|
|
2787
|
+
var _a;
|
|
2788
|
+
this.opts = opts;
|
|
2789
|
+
this.settledEventIds = (_a = opts.settledEventIds) != null ? _a : /* @__PURE__ */ new Set();
|
|
2790
|
+
}
|
|
2791
|
+
/** True when this child's outcome has already been reported. */
|
|
2792
|
+
wasSettledExplicitly(eventId) {
|
|
2793
|
+
return this.settledEventIds.has(eventId);
|
|
2794
|
+
}
|
|
2795
|
+
/**
|
|
2796
|
+
* Record an outcome reported somewhere other than `cancel()` / `fail()`, so
|
|
2797
|
+
* first-outcome-wins holds across every path that can state one.
|
|
2798
|
+
*
|
|
2799
|
+
* An aborted generation is such a path: an AbortSignal cancellation IS the
|
|
2800
|
+
* run's outcome, and the `fail(err)` that a catch block around the aborted
|
|
2801
|
+
* call naturally reports would otherwise error the child's spans — which is
|
|
2802
|
+
* the only thing separating `failed` from `cancelled`.
|
|
2803
|
+
*/
|
|
2804
|
+
noteSettled(eventId) {
|
|
2805
|
+
this.remember(eventId);
|
|
2806
|
+
}
|
|
2807
|
+
remember(eventId) {
|
|
2808
|
+
if (this.settledEventIds.has(eventId)) return;
|
|
2809
|
+
if (this.settledEventIds.size >= MAX_SETTLED_EVENT_IDS) {
|
|
2810
|
+
const oldest = this.settledEventIds.values().next();
|
|
2811
|
+
if (!oldest.done) this.settledEventIds.delete(oldest.value);
|
|
2812
|
+
}
|
|
2813
|
+
this.settledEventIds.add(eventId);
|
|
2814
|
+
}
|
|
2815
|
+
/**
|
|
2816
|
+
* Record a detached sub-agent on this turn: allocate the child's event id,
|
|
2817
|
+
* stamp the dispatch, and return the headers to send with the job.
|
|
2818
|
+
*
|
|
2819
|
+
* This dispatches nothing — you do, moments later, with the returned headers.
|
|
2820
|
+
* Nothing here waits for the child either, or claims to know how it is doing.
|
|
2821
|
+
* Readers derive that from the child's own event.
|
|
2822
|
+
*/
|
|
2823
|
+
subagent(options = {}) {
|
|
2824
|
+
var _a;
|
|
2825
|
+
const childEventId = (_a = options.childEventId) != null ? _a : randomUUID();
|
|
2826
|
+
const name = options.name;
|
|
2827
|
+
try {
|
|
2828
|
+
return this.recordLaunch(childEventId, name, options);
|
|
2829
|
+
} catch (err) {
|
|
2830
|
+
if (this.opts.debug) {
|
|
2831
|
+
console.warn(
|
|
2832
|
+
`[raindrop-ai/ai-sdk] sub-agent dispatch not recorded: ${err instanceof Error ? err.message : err}`
|
|
2833
|
+
);
|
|
2834
|
+
}
|
|
2835
|
+
return { childEventId, name, headers: {}, carrier: null };
|
|
2836
|
+
}
|
|
2837
|
+
}
|
|
2838
|
+
recordLaunch(childEventId, name, options) {
|
|
2839
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
|
|
2840
|
+
const active = (_a = this.opts.spanSource) == null ? void 0 : _a.activeDispatch();
|
|
2841
|
+
const inherited = getContextManager().getParentSpanIds();
|
|
2842
|
+
const eventId = (_e = (_c = (_b = options.eventId) != null ? _b : active == null ? void 0 : active.eventId) != null ? _c : inherited == null ? void 0 : inherited.eventId) != null ? _e : (_d = this.opts.defaultContext) == null ? void 0 : _d.eventId;
|
|
2843
|
+
const userId = (_h = (_f = options.userId) != null ? _f : active == null ? void 0 : active.userId) != null ? _h : (_g = this.opts.defaultContext) == null ? void 0 : _g.userId;
|
|
2844
|
+
const convoId = (_k = (_i = options.convoId) != null ? _i : active == null ? void 0 : active.convoId) != null ? _k : (_j = this.opts.defaultContext) == null ? void 0 : _j.convoId;
|
|
2845
|
+
if (!eventId) {
|
|
2846
|
+
return { childEventId, name, headers: {}, carrier: null };
|
|
2847
|
+
}
|
|
2848
|
+
const dispatch = detachedDispatchMetadata({ childEventId, name });
|
|
2849
|
+
const toolEvents = toolEventsAllowMetadata();
|
|
2850
|
+
for (const span of (_l = active == null ? void 0 : active.turnSpans) != null ? _l : []) {
|
|
2851
|
+
stampOpenSpan(span, toolEvents);
|
|
2852
|
+
}
|
|
2853
|
+
let dispatchIds;
|
|
2854
|
+
if (active == null ? void 0 : active.dispatchSpan) {
|
|
2855
|
+
stampOpenSpan(active.dispatchSpan, dispatch);
|
|
2856
|
+
dispatchIds = active.dispatchSpan.ids;
|
|
2857
|
+
} else if (this.opts.sendTraces) {
|
|
2858
|
+
dispatchIds = this.synthesizeDispatchSpan({
|
|
2859
|
+
childEventId,
|
|
2860
|
+
name,
|
|
2861
|
+
toolName: options.toolName,
|
|
2862
|
+
eventId,
|
|
2863
|
+
userId,
|
|
2864
|
+
convoId,
|
|
2865
|
+
input: options.input,
|
|
2866
|
+
// No active turn means no telemetry setting to honor: `input` is then
|
|
2867
|
+
// recorded on the explicit say-so of whoever passed it.
|
|
2868
|
+
recordInputs: (_m = active == null ? void 0 : active.recordInputs) != null ? _m : true,
|
|
2869
|
+
dispatch,
|
|
2870
|
+
parent: (inherited == null ? void 0 : inherited.eventId) === eventId ? inherited : void 0
|
|
2871
|
+
}).ids;
|
|
2872
|
+
}
|
|
2873
|
+
const traceId = base64ToHex((_o = (_n = dispatchIds == null ? void 0 : dispatchIds.traceIdB64) != null ? _n : inherited == null ? void 0 : inherited.traceIdB64) != null ? _o : "");
|
|
2874
|
+
const spanId = base64ToHex((_p = dispatchIds == null ? void 0 : dispatchIds.spanIdB64) != null ? _p : "");
|
|
2875
|
+
if (!traceId || !spanId) {
|
|
2876
|
+
if (this.opts.debug) {
|
|
2877
|
+
console.warn(
|
|
2878
|
+
"[raindrop-ai/ai-sdk] sub-agent dispatch recorded without a carrier: no dispatch span to reference (traces disabled?)"
|
|
2879
|
+
);
|
|
2880
|
+
}
|
|
2881
|
+
return { childEventId, name, headers: {}, carrier: null };
|
|
2882
|
+
}
|
|
2883
|
+
const carrier = {
|
|
2884
|
+
traceId,
|
|
2885
|
+
spanId,
|
|
2886
|
+
eventId,
|
|
2887
|
+
childEventId,
|
|
2888
|
+
...name ? { name } : {},
|
|
2889
|
+
...convoId ? { convoId } : {},
|
|
2890
|
+
...userId ? { userId } : {}
|
|
2891
|
+
};
|
|
2892
|
+
return { childEventId, name, headers: toHeaders(carrier), carrier };
|
|
2893
|
+
}
|
|
2894
|
+
/**
|
|
2895
|
+
* Record a dispatch span for a launch with no open tool-call span to decorate:
|
|
2896
|
+
* a launch from outside a tool's `execute`, or from a caller that is not an
|
|
2897
|
+
* LLM turn at all (an HTTP handler that enqueues jobs). Shaped as a tool call
|
|
2898
|
+
* so it reads identically to a model-issued launch.
|
|
2899
|
+
*/
|
|
2900
|
+
synthesizeDispatchSpan(args) {
|
|
2901
|
+
var _a;
|
|
2902
|
+
const spanName = (_a = args.toolName) != null ? _a : DEFAULT_DISPATCH_SPAN_NAME;
|
|
2903
|
+
const span = this.opts.traceShipper.startSpan({
|
|
2904
|
+
name: spanName,
|
|
2905
|
+
parent: args.parent,
|
|
2906
|
+
eventId: args.eventId,
|
|
2907
|
+
userId: args.userId,
|
|
2908
|
+
convoId: args.convoId,
|
|
2909
|
+
operationId: "ai.toolCall",
|
|
2910
|
+
attributes: [
|
|
2911
|
+
attrString("operation.name", "ai.toolCall"),
|
|
2912
|
+
attrString("resource.name", spanName),
|
|
2913
|
+
attrString("ai.toolCall.name", spanName),
|
|
2914
|
+
attrString("ai.toolCall.id", `call_${args.childEventId.replace(/-/g, "").slice(0, 12)}`),
|
|
2915
|
+
// Gated like every other input the turn's spans record: a caller that
|
|
2916
|
+
// disabled input capture must not leak the payload through the one
|
|
2917
|
+
// span this API synthesizes on its behalf.
|
|
2918
|
+
...args.recordInputs ? [attrString("ai.toolCall.args", boundedStringify(args.input))] : [],
|
|
2919
|
+
...attrsFrom(args.dispatch)
|
|
2920
|
+
]
|
|
2921
|
+
});
|
|
2922
|
+
this.opts.traceShipper.endSpan(span, {
|
|
2923
|
+
// A dispatch returns a handle, not an answer — the answer is the child's.
|
|
2924
|
+
attributes: [
|
|
2925
|
+
attrString(
|
|
2926
|
+
"ai.toolCall.result",
|
|
2927
|
+
boundedStringify({ jobId: args.childEventId, status: "accepted" })
|
|
2928
|
+
)
|
|
2929
|
+
]
|
|
2930
|
+
});
|
|
2931
|
+
return span;
|
|
2932
|
+
}
|
|
2933
|
+
/**
|
|
2934
|
+
* Adopt a carrier as the current run's parent reference.
|
|
2935
|
+
*
|
|
2936
|
+
* A missing carrier is a legitimate state — the child was invoked directly
|
|
2937
|
+
* rather than dispatched — so this always returns a usable run and leaves
|
|
2938
|
+
* `parent` null. Call sites stay unconditional.
|
|
2939
|
+
*/
|
|
2940
|
+
resume(carrierOrHeaders, options = {}) {
|
|
2941
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i;
|
|
2942
|
+
const carrier = carrierOrHeaders ? isTraceCarrier(carrierOrHeaders) ? carrierOrHeaders : this.readCarrier(carrierOrHeaders) : null;
|
|
2943
|
+
warnUnresolvedCarrier(carrierOrHeaders, carrier);
|
|
2944
|
+
const name = (_a = carrier == null ? void 0 : carrier.name) != null ? _a : options.name;
|
|
2945
|
+
const eventId = (_c = (_b = carrier == null ? void 0 : carrier.childEventId) != null ? _b : options.eventId) != null ? _c : randomUUID();
|
|
2946
|
+
const userId = (_f = (_d = carrier == null ? void 0 : carrier.userId) != null ? _d : options.userId) != null ? _f : (_e = this.opts.defaultContext) == null ? void 0 : _e.userId;
|
|
2947
|
+
const convoId = (_i = (_g = carrier == null ? void 0 : carrier.convoId) != null ? _g : options.convoId) != null ? _i : (_h = this.opts.defaultContext) == null ? void 0 : _h.convoId;
|
|
2948
|
+
const parent = carrier ? {
|
|
2949
|
+
parentEventId: carrier.eventId,
|
|
2950
|
+
...carrier.spanId ? { parentSpanId: carrier.spanId } : {},
|
|
2951
|
+
...name ? { name } : {}
|
|
2952
|
+
} : null;
|
|
2953
|
+
return {
|
|
2954
|
+
eventId,
|
|
2955
|
+
name,
|
|
2956
|
+
userId,
|
|
2957
|
+
convoId,
|
|
2958
|
+
parent,
|
|
2959
|
+
metadata: {
|
|
2960
|
+
eventId,
|
|
2961
|
+
...userId ? { userId } : {},
|
|
2962
|
+
...convoId ? { convoId } : {},
|
|
2963
|
+
...parent ? { subagent: parent } : {}
|
|
2964
|
+
},
|
|
2965
|
+
cancel: (reason) => this.settle(eventId, { userId, convoId, name, cancelled: true, output: reason }),
|
|
2966
|
+
fail: (reason) => this.settle(eventId, {
|
|
2967
|
+
userId,
|
|
2968
|
+
convoId,
|
|
2969
|
+
name,
|
|
2970
|
+
handoff: parent != null ? parent : void 0,
|
|
2971
|
+
cancelled: false,
|
|
2972
|
+
output: describeAbortReason(reason),
|
|
2973
|
+
error: reason
|
|
2974
|
+
})
|
|
2975
|
+
};
|
|
2976
|
+
}
|
|
2977
|
+
/**
|
|
2978
|
+
* A carrier arrives from outside this process, so a hostile or merely broken
|
|
2979
|
+
* header bag must cost the job its link, never its run.
|
|
2980
|
+
*/
|
|
2981
|
+
readCarrier(headers) {
|
|
2982
|
+
try {
|
|
2983
|
+
return fromHeaders(headers);
|
|
2984
|
+
} catch (err) {
|
|
2985
|
+
if (this.opts.debug) {
|
|
2986
|
+
console.warn(
|
|
2987
|
+
`[raindrop-ai/ai-sdk] sub-agent carrier ignored: ${err instanceof Error ? err.message : err}`
|
|
2988
|
+
);
|
|
2989
|
+
}
|
|
2990
|
+
return null;
|
|
2991
|
+
}
|
|
2992
|
+
}
|
|
2993
|
+
/**
|
|
2994
|
+
* Mark a failed child's own spans as errored.
|
|
2995
|
+
*
|
|
2996
|
+
* Reporting the reason as output is what gets the child an event at all, but
|
|
2997
|
+
* output alone is not enough: status is derived from span shape, and a child
|
|
2998
|
+
* with final output and no error spans derives `finished`. A failed job
|
|
2999
|
+
* reporting success is worse than one reporting nothing, so the failure has
|
|
3000
|
+
* to land on the telemetry too, not just in the text.
|
|
3001
|
+
*
|
|
3002
|
+
* This is the child describing its own run, not a caller writing a status it
|
|
3003
|
+
* cannot observe — the child's own spans are exactly where the contract puts
|
|
3004
|
+
* failure.
|
|
3005
|
+
*/
|
|
3006
|
+
recordFailureOnSpans(eventId, args, reason) {
|
|
3007
|
+
var _a, _b, _c;
|
|
3008
|
+
if (!this.opts.sendTraces) return;
|
|
3009
|
+
const failure = (_a = args.error) != null ? _a : reason;
|
|
3010
|
+
let marked = 0;
|
|
3011
|
+
for (const span2 of (_c = (_b = this.opts.spanSource) == null ? void 0 : _b.openSpansForEvent(eventId)) != null ? _c : []) {
|
|
3012
|
+
if (span2.endTimeUnixNano) continue;
|
|
3013
|
+
this.opts.traceShipper.endSpan(span2, { error: failure });
|
|
3014
|
+
marked++;
|
|
3015
|
+
}
|
|
3016
|
+
if (marked > 0) return;
|
|
3017
|
+
const spanName = SUBAGENT_ABORT_SPAN_NAME;
|
|
3018
|
+
const span = this.opts.traceShipper.startSpan({
|
|
3019
|
+
name: spanName,
|
|
3020
|
+
eventId,
|
|
3021
|
+
userId: args.userId,
|
|
3022
|
+
convoId: args.convoId,
|
|
3023
|
+
// Required, not decorative: ingest drops any span carrying no
|
|
3024
|
+
// `ai.operationId` (or traceloop / `gen_ai.*` key) and still answers 200,
|
|
3025
|
+
// so without this the failure disappears silently. The value is
|
|
3026
|
+
// deliberately none of the generate/stream/tool/embed forms, which is
|
|
3027
|
+
// what classifies the span as INTERNAL rather than mislabelling a failed
|
|
3028
|
+
// job as a model call or a tool call.
|
|
3029
|
+
operationId: SUBAGENT_FAILED_OPERATION_ID,
|
|
3030
|
+
// Carries the reverse reference like every other span the child emits:
|
|
3031
|
+
// this is often the child's ONLY span, and a span read on its own is the
|
|
3032
|
+
// whole reason the reference cannot live on the root alone. The name is
|
|
3033
|
+
// stamped even for an unlinked run, which has no caller to reference —
|
|
3034
|
+
// `span_name` no longer says which sub-agent this was, so the attribute
|
|
3035
|
+
// is the only thing that can.
|
|
3036
|
+
attributes: [
|
|
3037
|
+
attrString("resource.name", spanName),
|
|
3038
|
+
...handoffSpanAttrs(args.handoff),
|
|
3039
|
+
...subagentNameAttrs(args.name, args.handoff)
|
|
3040
|
+
]
|
|
3041
|
+
});
|
|
3042
|
+
this.opts.traceShipper.endSpan(span, { error: failure });
|
|
3043
|
+
}
|
|
3044
|
+
async settle(eventId, args) {
|
|
3045
|
+
var _a, _b;
|
|
3046
|
+
if (this.settledEventIds.has(eventId)) {
|
|
3047
|
+
if (this.opts.debug) {
|
|
3048
|
+
console.warn(
|
|
3049
|
+
`[raindrop-ai/ai-sdk] sub-agent ${eventId} already reported an outcome; ignoring the second one`
|
|
3050
|
+
);
|
|
3051
|
+
}
|
|
3052
|
+
return;
|
|
3053
|
+
}
|
|
3054
|
+
this.remember(eventId);
|
|
3055
|
+
const output = args.output && args.output.trim().length > 0 ? args.output : args.cancelled ? SUBAGENT_CANCELLED_OUTPUT : SUBAGENT_ABORTED_OUTPUT;
|
|
3056
|
+
try {
|
|
3057
|
+
if (args.cancelled) {
|
|
3058
|
+
for (const span of (_b = (_a = this.opts.spanSource) == null ? void 0 : _a.openSpansForEvent(eventId)) != null ? _b : []) {
|
|
3059
|
+
stampOpenSpanExact(span, cancelledTerminalAttributes());
|
|
3060
|
+
}
|
|
3061
|
+
} else {
|
|
3062
|
+
this.recordFailureOnSpans(eventId, args, output);
|
|
3063
|
+
}
|
|
3064
|
+
} catch (err) {
|
|
3065
|
+
if (this.opts.debug) {
|
|
3066
|
+
console.warn(
|
|
3067
|
+
`[raindrop-ai/ai-sdk] sub-agent outcome not recorded on spans: ${err instanceof Error ? err.message : err}`
|
|
3068
|
+
);
|
|
3069
|
+
}
|
|
3070
|
+
}
|
|
3071
|
+
if (!this.opts.sendEvents) return;
|
|
3072
|
+
await this.opts.eventShipper.patch(eventId, {
|
|
3073
|
+
userId: args.userId,
|
|
3074
|
+
convoId: args.convoId,
|
|
3075
|
+
// An event is only created from a run that reported something. A child
|
|
3076
|
+
// that dies silently produces no event at all, which pins the caller on
|
|
3077
|
+
// `queued` forever — indistinguishable from a job that never started.
|
|
3078
|
+
output,
|
|
3079
|
+
...args.cancelled ? { properties: { [HANDOFF_TERMINAL_PROPERTY_KEY]: HANDOFF_TERMINAL_CANCELLED } } : {},
|
|
3080
|
+
isPending: false
|
|
3081
|
+
}).catch((err) => {
|
|
3082
|
+
if (this.opts.debug) {
|
|
3083
|
+
console.warn(
|
|
3084
|
+
`[raindrop-ai/ai-sdk] sub-agent outcome patch failed: ${err instanceof Error ? err.message : err}`
|
|
3085
|
+
);
|
|
3086
|
+
}
|
|
3087
|
+
});
|
|
3088
|
+
}
|
|
3089
|
+
};
|
|
3090
|
+
|
|
2439
3091
|
// src/internal/usage.ts
|
|
2440
3092
|
function firstTokenCount(...values) {
|
|
2441
3093
|
for (const value of values) {
|
|
@@ -2628,6 +3280,7 @@ var RaindropTelemetryIntegration = class {
|
|
|
2628
3280
|
eventName: (_f = callMeta.eventName) != null ? _f : (_e = this.defaultContext) == null ? void 0 : _e.eventName
|
|
2629
3281
|
};
|
|
2630
3282
|
const inherited = getContextManager().getParentSpanIds();
|
|
3283
|
+
const handoff = readDetachedChildLink(metadata);
|
|
2631
3284
|
const eventIdGenerated = (metadata == null ? void 0 : metadata["raindrop.internal.eventIdGenerated"]) === "true" || (metadata == null ? void 0 : metadata["raindrop.internal.eventIdGenerated"]) === true || (callContextMetadata == null ? void 0 : callContextMetadata.eventIdGenerated) === true;
|
|
2632
3285
|
const explicitEventId = callMeta.eventId && !eventIdGenerated ? callMeta.eventId : void 0;
|
|
2633
3286
|
const eventId = (_j = (_i = (_h = explicitEventId != null ? explicitEventId : (_g = this.defaultContext) == null ? void 0 : _g.eventId) != null ? _h : inherited == null ? void 0 : inherited.eventId) != null ? _i : callMeta.eventId) != null ? _j : randomUUID();
|
|
@@ -2657,7 +3310,10 @@ var RaindropTelemetryIntegration = class {
|
|
|
2657
3310
|
attrString("ai.toolCall.name", subagentName),
|
|
2658
3311
|
attrString("raindrop.subagent.name", subagentName),
|
|
2659
3312
|
attrString("raindrop.agent.role", "subagent"),
|
|
2660
|
-
...parentAttrs
|
|
3313
|
+
...parentAttrs,
|
|
3314
|
+
// Top of this child's tree, so the reverse reference matters as much
|
|
3315
|
+
// here as on the root: these are the spans a reader lands on first.
|
|
3316
|
+
...handoffSpanAttrs(handoff)
|
|
2661
3317
|
]
|
|
2662
3318
|
});
|
|
2663
3319
|
const subagentParentRef = this.spanParentRef(subagentToolCallSpan);
|
|
@@ -2670,7 +3326,8 @@ var RaindropTelemetryIntegration = class {
|
|
|
2670
3326
|
attributes: [
|
|
2671
3327
|
attrString("operation.name", "agent.subagent"),
|
|
2672
3328
|
attrString("raindrop.span.kind", "llm_call"),
|
|
2673
|
-
attrString("raindrop.subagent.name", subagentName)
|
|
3329
|
+
attrString("raindrop.subagent.name", subagentName),
|
|
3330
|
+
...handoffSpanAttrs(handoff)
|
|
2674
3331
|
]
|
|
2675
3332
|
});
|
|
2676
3333
|
this.traceShipper.endSpan(markerSpan);
|
|
@@ -2738,7 +3395,9 @@ var RaindropTelemetryIntegration = class {
|
|
|
2738
3395
|
inputText: isEmbed ? void 0 : this.extractInputText(event),
|
|
2739
3396
|
toolCallCount: 0,
|
|
2740
3397
|
subagentName,
|
|
2741
|
-
subagentToolCallSpan
|
|
3398
|
+
subagentToolCallSpan,
|
|
3399
|
+
handoff,
|
|
3400
|
+
nestedInEvent: inheritedParent !== void 0
|
|
2742
3401
|
});
|
|
2743
3402
|
};
|
|
2744
3403
|
// ── onStepStart ─────────────────────────────────────────────────────────
|
|
@@ -2783,7 +3442,8 @@ var RaindropTelemetryIntegration = class {
|
|
|
2783
3442
|
...attrsFromModelProvider(event.provider),
|
|
2784
3443
|
attrString("ai.model.id", event.modelId),
|
|
2785
3444
|
attrString(MODEL_USAGE_ATTRIBUTES.requestModel, event.modelId),
|
|
2786
|
-
...inputAttrs
|
|
3445
|
+
...inputAttrs,
|
|
3446
|
+
...handoffSpanAttrs(state.handoff)
|
|
2787
3447
|
]
|
|
2788
3448
|
});
|
|
2789
3449
|
state.stepSpan = stepSpan;
|
|
@@ -2922,7 +3582,8 @@ var RaindropTelemetryIntegration = class {
|
|
|
2922
3582
|
attrString("operation.name", operationName),
|
|
2923
3583
|
attrString("resource.name", resourceName),
|
|
2924
3584
|
attrString("ai.telemetry.functionId", state.functionId),
|
|
2925
|
-
...inputAttrs
|
|
3585
|
+
...inputAttrs,
|
|
3586
|
+
...handoffSpanAttrs(state.handoff)
|
|
2926
3587
|
]
|
|
2927
3588
|
});
|
|
2928
3589
|
state.embedSpans.set(event.embedCallId, embedSpan);
|
|
@@ -2994,15 +3655,26 @@ var RaindropTelemetryIntegration = class {
|
|
|
2994
3655
|
this.traceShipper.endSpan(toolSpan, { error: actualError });
|
|
2995
3656
|
}
|
|
2996
3657
|
state.toolSpans.clear();
|
|
3658
|
+
const abortReason = describeAbortReason(actualError);
|
|
2997
3659
|
if (state.rootSpan) {
|
|
2998
|
-
this.traceShipper.endSpan(state.rootSpan, {
|
|
3660
|
+
this.traceShipper.endSpan(state.rootSpan, {
|
|
3661
|
+
error: actualError,
|
|
3662
|
+
attributes: this.abortOutcomeAttrs(state, abortReason, "error")
|
|
3663
|
+
});
|
|
2999
3664
|
}
|
|
3000
3665
|
if (state.subagentToolCallSpan) {
|
|
3001
3666
|
this.traceShipper.endSpan(state.subagentToolCallSpan, { error: actualError });
|
|
3002
3667
|
}
|
|
3003
3668
|
const isEmbed = state.operationId === "ai.embed" || state.operationId === "ai.embedMany";
|
|
3004
3669
|
if (!isEmbed) {
|
|
3005
|
-
|
|
3670
|
+
const errorIsTheRunsOutcome = state.handoff !== void 0 && !state.nestedInEvent;
|
|
3671
|
+
this.finalizeGenerateEvent(
|
|
3672
|
+
state,
|
|
3673
|
+
state.accumulatedText || void 0,
|
|
3674
|
+
void 0,
|
|
3675
|
+
false,
|
|
3676
|
+
errorIsTheRunsOutcome ? { fallbackOutput: abortReason } : void 0
|
|
3677
|
+
);
|
|
3006
3678
|
}
|
|
3007
3679
|
this.cleanup(event.callId);
|
|
3008
3680
|
};
|
|
@@ -3039,9 +3711,19 @@ var RaindropTelemetryIntegration = class {
|
|
|
3039
3711
|
this.traceShipper.endSpan(toolSpan, { attributes: [abortedAttr] });
|
|
3040
3712
|
}
|
|
3041
3713
|
state.toolSpans.clear();
|
|
3714
|
+
const abortIsTheRunsOutcome = state.handoff !== void 0 && !state.nestedInEvent;
|
|
3042
3715
|
if (state.rootSpan) {
|
|
3043
3716
|
this.traceShipper.endSpan(state.rootSpan, {
|
|
3044
|
-
attributes: [
|
|
3717
|
+
attributes: [
|
|
3718
|
+
abortedAttr,
|
|
3719
|
+
attrInt("ai.toolCall.count", state.toolCallCount),
|
|
3720
|
+
// An aborted detached child IS a cancelled sub-agent, and a cancelled
|
|
3721
|
+
// run is span-for-span identical to a finished one — spans close,
|
|
3722
|
+
// nothing errors, there is just no answer. So it is the one outcome
|
|
3723
|
+
// that has to be stated, and the child states it on itself.
|
|
3724
|
+
...abortIsTheRunsOutcome ? cancelledSpanAttrs() : [],
|
|
3725
|
+
...abortIsTheRunsOutcome ? this.abortOutcomeAttrs(state, SUBAGENT_CANCELLED_OUTPUT, "stop") : []
|
|
3726
|
+
]
|
|
3045
3727
|
});
|
|
3046
3728
|
}
|
|
3047
3729
|
if (state.subagentToolCallSpan) {
|
|
@@ -3049,7 +3731,17 @@ var RaindropTelemetryIntegration = class {
|
|
|
3049
3731
|
attributes: [abortedAttr]
|
|
3050
3732
|
});
|
|
3051
3733
|
}
|
|
3052
|
-
this.finalizeGenerateEvent(
|
|
3734
|
+
this.finalizeGenerateEvent(
|
|
3735
|
+
state,
|
|
3736
|
+
state.accumulatedText || void 0,
|
|
3737
|
+
void 0,
|
|
3738
|
+
false,
|
|
3739
|
+
abortIsTheRunsOutcome ? {
|
|
3740
|
+
fallbackOutput: SUBAGENT_CANCELLED_OUTPUT,
|
|
3741
|
+
properties: { [HANDOFF_TERMINAL_PROPERTY_KEY]: HANDOFF_TERMINAL_CANCELLED }
|
|
3742
|
+
} : void 0
|
|
3743
|
+
);
|
|
3744
|
+
if (abortIsTheRunsOutcome) this.subagents.noteSettled(state.eventId);
|
|
3053
3745
|
this.cleanup(callId);
|
|
3054
3746
|
};
|
|
3055
3747
|
// ── executeTool ─────────────────────────────────────────────────────────
|
|
@@ -3077,6 +3769,97 @@ var RaindropTelemetryIntegration = class {
|
|
|
3077
3769
|
this.subagentWrapping = opts.subagentWrapping !== false;
|
|
3078
3770
|
this.debug = opts.debug === true;
|
|
3079
3771
|
this.defaultContext = opts.context;
|
|
3772
|
+
this.subagents = new SubagentApi({
|
|
3773
|
+
traceShipper: this.traceShipper,
|
|
3774
|
+
eventShipper: this.eventShipper,
|
|
3775
|
+
sendTraces: this.sendTraces,
|
|
3776
|
+
sendEvents: this.sendEvents,
|
|
3777
|
+
debug: this.debug,
|
|
3778
|
+
defaultContext: this.defaultContext,
|
|
3779
|
+
settledEventIds: opts.settledEventIds,
|
|
3780
|
+
spanSource: {
|
|
3781
|
+
activeDispatch: () => this.activeDispatch(),
|
|
3782
|
+
openSpansForEvent: (eventId) => this.openSpansForEvent(eventId)
|
|
3783
|
+
}
|
|
3784
|
+
});
|
|
3785
|
+
}
|
|
3786
|
+
/**
|
|
3787
|
+
* Record a detached sub-agent on the turn that is live right now.
|
|
3788
|
+
*
|
|
3789
|
+
* Returns the dispatch — the child's event id and the headers to send with
|
|
3790
|
+
* the job. Dispatching is still yours to do; this only states that you are
|
|
3791
|
+
* about to, so a reader can follow the link before the child exists.
|
|
3792
|
+
*/
|
|
3793
|
+
subagent(options = {}) {
|
|
3794
|
+
return this.subagents.subagent(options);
|
|
3795
|
+
}
|
|
3796
|
+
// ── detached sub-agent hand-offs ─────────────────────────────────────────
|
|
3797
|
+
/**
|
|
3798
|
+
* The turn a `subagent()` dispatch is happening inside.
|
|
3799
|
+
*
|
|
3800
|
+
* Resolved from the parent-tool context first, which is the only way to reach
|
|
3801
|
+
* the EXACT span that dispatched: the tool call the model itself issued, still
|
|
3802
|
+
* open while its `execute` runs. Falling back to the event id lets a launch
|
|
3803
|
+
* from elsewhere in the turn (a queue producer called mid-generation) still
|
|
3804
|
+
* find the turn's spans, which is where the tool-events opt-in has to land.
|
|
3805
|
+
*/
|
|
3806
|
+
activeDispatch() {
|
|
3807
|
+
var _a;
|
|
3808
|
+
const parentTool = getCurrentParentToolContext();
|
|
3809
|
+
let state = parentTool ? this.getState(parentTool.parentCallId) : void 0;
|
|
3810
|
+
const inheritedEventId = (_a = getContextManager().getParentSpanIds()) == null ? void 0 : _a.eventId;
|
|
3811
|
+
if (!state && inheritedEventId) {
|
|
3812
|
+
for (const candidate of this.callStates.values()) {
|
|
3813
|
+
if (candidate.eventId === inheritedEventId) {
|
|
3814
|
+
state = candidate;
|
|
3815
|
+
break;
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
}
|
|
3819
|
+
if (!state) return void 0;
|
|
3820
|
+
return {
|
|
3821
|
+
eventId: state.eventId,
|
|
3822
|
+
userId: state.identity.userId,
|
|
3823
|
+
convoId: state.identity.convoId,
|
|
3824
|
+
dispatchSpan: parentTool ? state.toolSpans.get(parentTool.toolCallId) : void 0,
|
|
3825
|
+
turnSpans: [state.rootSpan, state.stepSpan].filter(
|
|
3826
|
+
(span) => span !== void 0
|
|
3827
|
+
),
|
|
3828
|
+
recordInputs: state.recordInputs
|
|
3829
|
+
};
|
|
3830
|
+
}
|
|
3831
|
+
/** Spans still open for an event, so a late outcome can still be stated. */
|
|
3832
|
+
openSpansForEvent(eventId) {
|
|
3833
|
+
const spans = [];
|
|
3834
|
+
for (const state of this.callStates.values()) {
|
|
3835
|
+
if (state.eventId !== eventId) continue;
|
|
3836
|
+
if (state.rootSpan) spans.push(state.rootSpan);
|
|
3837
|
+
if (state.stepSpan) spans.push(state.stepSpan);
|
|
3838
|
+
}
|
|
3839
|
+
return spans;
|
|
3840
|
+
}
|
|
3841
|
+
/**
|
|
3842
|
+
* End-attributes that keep a detached child legible when it ends without an
|
|
3843
|
+
* answer — an error, an abort, a cancellation.
|
|
3844
|
+
*
|
|
3845
|
+
* An event is created from an LLM span only when it has a finish reason and
|
|
3846
|
+
* non-empty output, so a child that dies silently produces NO event, and the
|
|
3847
|
+
* caller's hand-off pill stays on `queued` forever — indistinguishable from a
|
|
3848
|
+
* job that never started. Reporting the abort reason as the run's output is
|
|
3849
|
+
* what makes the outcome visible. Only detached children get this: an inline
|
|
3850
|
+
* generation's failure is already legible from its caller's own event.
|
|
3851
|
+
*
|
|
3852
|
+
* And only the run's OUTERMOST generation gets it (see `nestedInEvent`): an
|
|
3853
|
+
* inner sub-call ending badly is not the run ending, and since an event is
|
|
3854
|
+
* created from an LLM span with output, `ai.response.text` here would state
|
|
3855
|
+
* the run's outcome through the span while the turn is still working.
|
|
3856
|
+
*/
|
|
3857
|
+
abortOutcomeAttrs(state, reason, finishReason) {
|
|
3858
|
+
if (!state.handoff || state.nestedInEvent) return [];
|
|
3859
|
+
return [
|
|
3860
|
+
attrString("ai.response.text", capText2(state.accumulatedText || reason)),
|
|
3861
|
+
attrString("ai.response.finishReason", finishReason)
|
|
3862
|
+
];
|
|
3080
3863
|
}
|
|
3081
3864
|
// ── helpers ──────────────────────────────────────────────────────────────
|
|
3082
3865
|
getState(callId) {
|
|
@@ -3195,7 +3978,8 @@ var RaindropTelemetryIntegration = class {
|
|
|
3195
3978
|
attrString("ai.telemetry.functionId", state.functionId),
|
|
3196
3979
|
attrString("ai.toolCall.name", toolCall.toolName),
|
|
3197
3980
|
attrString("ai.toolCall.id", toolCall.toolCallId),
|
|
3198
|
-
...inputAttrs
|
|
3981
|
+
...inputAttrs,
|
|
3982
|
+
...handoffSpanAttrs(state.handoff)
|
|
3199
3983
|
]
|
|
3200
3984
|
});
|
|
3201
3985
|
state.toolSpans.set(toolCall.toolCallId, toolSpan);
|
|
@@ -3274,7 +4058,8 @@ var RaindropTelemetryIntegration = class {
|
|
|
3274
4058
|
attrString("ai.toolCall.name", call.toolName),
|
|
3275
4059
|
attrString("ai.toolCall.id", call.toolCallId),
|
|
3276
4060
|
attrString("ai.toolCall.providerExecuted", "true"),
|
|
3277
|
-
...inputAttrs
|
|
4061
|
+
...inputAttrs,
|
|
4062
|
+
...handoffSpanAttrs(state.handoff)
|
|
3278
4063
|
]
|
|
3279
4064
|
});
|
|
3280
4065
|
state.toolCallCount += 1;
|
|
@@ -3355,19 +4140,22 @@ var RaindropTelemetryIntegration = class {
|
|
|
3355
4140
|
* is finalized by that resume — otherwise each execution would finalize the
|
|
3356
4141
|
* same event ID into a separate canonical row.
|
|
3357
4142
|
*/
|
|
3358
|
-
finalizeGenerateEvent(state, output, model, keepPending = false) {
|
|
4143
|
+
finalizeGenerateEvent(state, output, model, keepPending = false, detachedOutcome) {
|
|
3359
4144
|
var _a, _b, _c, _d, _e, _f, _g, _h, _i;
|
|
3360
4145
|
const suppressSubagentEvent = state.subagentName !== void 0 && state.subagentToolCallSpan !== void 0;
|
|
3361
4146
|
if (!this.sendEvents || suppressSubagentEvent) return;
|
|
4147
|
+
if (this.subagents.wasSettledExplicitly(state.eventId)) return;
|
|
3362
4148
|
const callMeta = this.extractRaindropMetadata(state.metadata);
|
|
3363
4149
|
const userId = (_b = callMeta.userId) != null ? _b : (_a = this.defaultContext) == null ? void 0 : _a.userId;
|
|
3364
4150
|
if (!userId) return;
|
|
3365
4151
|
const eventName = (_e = (_d = callMeta.eventName) != null ? _d : (_c = this.defaultContext) == null ? void 0 : _c.eventName) != null ? _e : state.operationId;
|
|
3366
4152
|
const cappedOutput = capText2(output);
|
|
4153
|
+
const reportedOutput = state.handoff && detachedOutcome && !(cappedOutput == null ? void 0 : cappedOutput.trim()) ? detachedOutcome.fallbackOutput : cappedOutput;
|
|
3367
4154
|
const input = capText2(state.inputText);
|
|
3368
4155
|
const properties = {
|
|
3369
4156
|
...(_f = this.defaultContext) == null ? void 0 : _f.properties,
|
|
3370
|
-
...callMeta.properties
|
|
4157
|
+
...callMeta.properties,
|
|
4158
|
+
...state.handoff ? detachedOutcome == null ? void 0 : detachedOutcome.properties : void 0
|
|
3371
4159
|
};
|
|
3372
4160
|
const featureFlags = {
|
|
3373
4161
|
...((_g = this.defaultContext) == null ? void 0 : _g.featureFlags) ? normalizeFeatureFlags(this.defaultContext.featureFlags) : {},
|
|
@@ -3379,7 +4167,7 @@ var RaindropTelemetryIntegration = class {
|
|
|
3379
4167
|
userId,
|
|
3380
4168
|
convoId,
|
|
3381
4169
|
input,
|
|
3382
|
-
output:
|
|
4170
|
+
output: reportedOutput,
|
|
3383
4171
|
model,
|
|
3384
4172
|
properties: Object.keys(properties).length > 0 ? properties : void 0,
|
|
3385
4173
|
featureFlags: Object.keys(featureFlags).length > 0 ? featureFlags : void 0,
|
|
@@ -4291,6 +5079,7 @@ function wrapAISDK(aiSDK, deps) {
|
|
|
4291
5079
|
sendTraces: ((_a = deps.options.send) == null ? void 0 : _a.traces) !== false,
|
|
4292
5080
|
sendEvents: ((_b = deps.options.send) == null ? void 0 : _b.events) !== false,
|
|
4293
5081
|
debug,
|
|
5082
|
+
settledEventIds: deps.settledEventIds,
|
|
4294
5083
|
context: {
|
|
4295
5084
|
userId: wrapTimeCtx.userId,
|
|
4296
5085
|
eventId: wrapTimeCtx.eventId,
|
|
@@ -5500,6 +6289,8 @@ function eventMetadata(options) {
|
|
|
5500
6289
|
if (options.properties) result["raindrop.properties"] = JSON.stringify(options.properties);
|
|
5501
6290
|
if (options.featureFlags)
|
|
5502
6291
|
result["raindrop.featureFlags"] = JSON.stringify(normalizeFeatureFlags(options.featureFlags));
|
|
6292
|
+
if (options.subagent) Object.assign(result, detachedChildMetadata(options.subagent));
|
|
6293
|
+
if (options.toolEvents) result[TOOL_EVENTS_SUFFIX] = options.toolEvents;
|
|
5503
6294
|
return result;
|
|
5504
6295
|
}
|
|
5505
6296
|
function deriveChatTurnMessageId(request) {
|
|
@@ -5582,12 +6373,22 @@ function createRaindropAISDK(opts) {
|
|
|
5582
6373
|
transformSpan: (_j = opts.traces) == null ? void 0 : _j.transformSpan,
|
|
5583
6374
|
disableDefaultRedaction: (_k = opts.traces) == null ? void 0 : _k.disableDefaultRedaction
|
|
5584
6375
|
});
|
|
6376
|
+
const settledEventIds = /* @__PURE__ */ new Set();
|
|
6377
|
+
const subagentApi = new SubagentApi({
|
|
6378
|
+
traceShipper,
|
|
6379
|
+
eventShipper,
|
|
6380
|
+
sendTraces: tracesEnabled,
|
|
6381
|
+
sendEvents: eventsEnabled,
|
|
6382
|
+
debug: envDebug,
|
|
6383
|
+
settledEventIds
|
|
6384
|
+
});
|
|
5585
6385
|
return {
|
|
5586
6386
|
wrap(aiSDK, options) {
|
|
5587
6387
|
return wrapAISDK(aiSDK, {
|
|
5588
6388
|
options: options != null ? options : {},
|
|
5589
6389
|
eventShipper,
|
|
5590
|
-
traceShipper
|
|
6390
|
+
traceShipper,
|
|
6391
|
+
settledEventIds
|
|
5591
6392
|
});
|
|
5592
6393
|
},
|
|
5593
6394
|
createSelfDiagnosticsTool(options = {}) {
|
|
@@ -5624,9 +6425,14 @@ function createRaindropAISDK(opts) {
|
|
|
5624
6425
|
sendEvents: eventsEnabled,
|
|
5625
6426
|
subagentWrapping,
|
|
5626
6427
|
debug: envDebug,
|
|
6428
|
+
settledEventIds,
|
|
5627
6429
|
context
|
|
5628
6430
|
});
|
|
5629
6431
|
},
|
|
6432
|
+
subagents: subagentApi,
|
|
6433
|
+
subagent(options = {}) {
|
|
6434
|
+
return subagentApi.subagent(options);
|
|
6435
|
+
},
|
|
5630
6436
|
events: {
|
|
5631
6437
|
async patch(eventId, patch) {
|
|
5632
6438
|
await eventShipper.patch(eventId, patch);
|
|
@@ -5746,4 +6552,4 @@ function raindrop(options = {}) {
|
|
|
5746
6552
|
return client.createTelemetryIntegration({ context, subagentWrapping });
|
|
5747
6553
|
}
|
|
5748
6554
|
|
|
5749
|
-
export { DEFAULT_MAX_TEXT_FIELD_CHARS2 as DEFAULT_MAX_TEXT_FIELD_CHARS, DEFAULT_REDACT_ATTRIBUTE_KEYS, DEFAULT_SECRET_KEY_NAMES, REDACTED_PLACEHOLDER, RaindropTelemetryIntegration, TRUNCATION_MARKER2 as TRUNCATION_MARKER, _resetParentToolContextStorage, _resetRaindropCallMetadataStorage, _resetWarnedMissingUserId, boundedStringify, capText2 as capText, clearParentToolContext, createRaindropAISDK, currentSpan, defaultTransformSpan, enterParentToolContext, eventMetadata, eventMetadataFromChatRequest, getContextManager, getCurrentParentToolContext, getCurrentRaindropCallMetadata, normalizeFeatureFlags, raindrop, readRaindropCallMetadataFromArgs, redactJsonAttributeValue, redactSecretsInObject, runWithParentToolContext, runWithRaindropCallMetadata, withCurrent };
|
|
6555
|
+
export { DEFAULT_MAX_TEXT_FIELD_CHARS2 as DEFAULT_MAX_TEXT_FIELD_CHARS, DEFAULT_REDACT_ATTRIBUTE_KEYS, DEFAULT_SECRET_KEY_NAMES, DETACHED_MODE, HANDOFF_ATTRIBUTE_PREFIXES, HANDOFF_ATTRIBUTE_SUFFIXES, HANDOFF_TERMINAL_CANCELLED, HANDOFF_TERMINAL_PROPERTY_KEY, REDACTED_PLACEHOLDER, RaindropTelemetryIntegration, SUBAGENT_ABORTED_OUTPUT, SUBAGENT_AGENT_ROLE, SUBAGENT_CANCELLED_OUTPUT, TOOL_EVENTS_ALLOW, TRUNCATION_MARKER2 as TRUNCATION_MARKER, _resetParentToolContextStorage, _resetRaindropCallMetadataStorage, _resetWarnedMissingUserId, boundedStringify, capText2 as capText, clearParentToolContext, createRaindropAISDK, currentSpan, defaultTransformSpan, enterParentToolContext, eventMetadata, eventMetadataFromChatRequest, fromHeaders, getContextManager, getCurrentParentToolContext, getCurrentRaindropCallMetadata, normalizeFeatureFlags, raindrop, readRaindropCallMetadataFromArgs, redactJsonAttributeValue, redactSecretsInObject, resetUnresolvedCarrierWarning, runWithParentToolContext, runWithRaindropCallMetadata, toHeaders, toLangSmithHeaders, withCurrent };
|