@raindrop-ai/ai-sdk 0.0.40 → 0.1.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/dist/{chunk-KTT4YMAW.mjs → chunk-ETGFVXYM.mjs} +124 -20
- package/dist/{index-D82pma6B.d.mts → index-CUR4qgwL.d.mts} +58 -1
- package/dist/{index-D82pma6B.d.ts → index-CUR4qgwL.d.ts} +58 -1
- package/dist/index.browser.d.mts +58 -1
- package/dist/index.browser.d.ts +58 -1
- package/dist/index.browser.js +99 -19
- package/dist/index.browser.mjs +99 -20
- package/dist/index.node.d.mts +1 -1
- package/dist/index.node.d.ts +1 -1
- package/dist/index.node.js +124 -19
- 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 +124 -19
- package/dist/index.workers.mjs +1 -1
- package/package.json +2 -2
package/dist/index.workers.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as AISDKChatRequestLike, a as AISDKChatRequestMessageLike, b as AISDKMessage, c as AgentCallMetadata, d as AgentWithMetadata, e as Attachment, B as BuildEventPatch, C as ContextManager, f as ContextSpan, g as CreateSpanArgs, D as DEFAULT_MAX_TEXT_FIELD_CHARS, h as DEFAULT_REDACT_ATTRIBUTE_KEYS, i as DEFAULT_SECRET_KEY_NAMES, E as EndSpanArgs, j as EventBuilder, k as EventMetadataOptions, I as IdentifyInput, O as OtlpAnyValue,
|
|
1
|
+
export { A as AISDKChatRequestLike, a as AISDKChatRequestMessageLike, b as AISDKMessage, c as AgentCallMetadata, d as AgentWithMetadata, e as Attachment, B as BuildEventPatch, C as ContextManager, f as ContextSpan, g as CreateSpanArgs, D as DEFAULT_MAX_TEXT_FIELD_CHARS, h as DEFAULT_REDACT_ATTRIBUTE_KEYS, i as DEFAULT_SECRET_KEY_NAMES, E as EndSpanArgs, j as EventBuilder, k as EventMetadataOptions, F as FeatureFlagValue, l as FeatureFlags, I as IdentifyInput, O as OtlpAnyValue, m as OtlpSpan, P as ParentToolContext, R as REDACTED_PLACEHOLDER, n as RaindropAISDKClient, o as RaindropAISDKContext, p as RaindropAISDKOptions, q as RaindropCallMetadata, r as RaindropTelemetryIntegration, s as RaindropTelemetryIntegrationOptions, t as RaindropTelemetryOptions, S as SelfDiagnosticsOptions, u as SelfDiagnosticsSignalDefinition, v as SelfDiagnosticsSignalDefinitions, w as SelfDiagnosticsTool, x as SelfDiagnosticsToolInput, y as SelfDiagnosticsToolOptions, z as SelfDiagnosticsToolResult, G as StartSpanArgs, T as TRUNCATION_MARKER, H as TraceSpan, J as TransformSpanHook, W as WrapAISDKOptions, K as WrappedAI, L as WrappedAISDK, _ as _resetParentToolContextStorage, M as _resetRaindropCallMetadataStorage, N as _resetWarnedMissingUserId, Q as boundedStringify, U as capText, V as clearParentToolContext, X as createRaindropAISDK, Y as currentSpan, Z as defaultTransformSpan, $ as enterParentToolContext, a0 as eventMetadata, a1 as eventMetadataFromChatRequest, a2 as getContextManager, a3 as getCurrentParentToolContext, a4 as getCurrentRaindropCallMetadata, a5 as normalizeFeatureFlags, a6 as raindrop, a7 as readRaindropCallMetadataFromArgs, a8 as redactJsonAttributeValue, a9 as redactSecretsInObject, aa as runWithParentToolContext, ab as runWithRaindropCallMetadata, ac as withCurrent } from './index-CUR4qgwL.js';
|
|
2
2
|
|
|
3
3
|
declare global {
|
|
4
4
|
var RAINDROP_ASYNC_LOCAL_STORAGE: (new <T>() => {
|
package/dist/index.workers.js
CHANGED
|
@@ -4,7 +4,15 @@ var async_hooks = require('async_hooks');
|
|
|
4
4
|
|
|
5
5
|
// src/index.workers.ts
|
|
6
6
|
|
|
7
|
-
// ../core/dist/chunk-
|
|
7
|
+
// ../core/dist/chunk-Y5LUB7OE.js
|
|
8
|
+
function normalizeFeatureFlags(input) {
|
|
9
|
+
if (Array.isArray(input)) {
|
|
10
|
+
return Object.fromEntries(input.map((name) => [name, "true"]));
|
|
11
|
+
}
|
|
12
|
+
return Object.fromEntries(
|
|
13
|
+
Object.entries(input).map(([k, v]) => [k, String(v)])
|
|
14
|
+
);
|
|
15
|
+
}
|
|
8
16
|
function getCrypto() {
|
|
9
17
|
const c = globalThis.crypto;
|
|
10
18
|
return c;
|
|
@@ -59,6 +67,20 @@ function base64Encode(bytes) {
|
|
|
59
67
|
}
|
|
60
68
|
return out;
|
|
61
69
|
}
|
|
70
|
+
function runWithTracingSuppressed(fn) {
|
|
71
|
+
const hook = globalThis.RAINDROP_SUPPRESS_TRACING;
|
|
72
|
+
if (typeof hook !== "function") return fn();
|
|
73
|
+
let started = false;
|
|
74
|
+
try {
|
|
75
|
+
return hook(() => {
|
|
76
|
+
started = true;
|
|
77
|
+
return fn();
|
|
78
|
+
});
|
|
79
|
+
} catch (err) {
|
|
80
|
+
if (started) throw err;
|
|
81
|
+
return fn();
|
|
82
|
+
}
|
|
83
|
+
}
|
|
62
84
|
var DEFAULT_REQUEST_TIMEOUT_MS = 3e4;
|
|
63
85
|
var MAX_RETRY_DELAY_MS = 3e4;
|
|
64
86
|
function wait(ms) {
|
|
@@ -169,15 +191,17 @@ async function postJson(url, body, headers, opts) {
|
|
|
169
191
|
const timeoutMs = (_a = opts.timeoutMs) != null ? _a : DEFAULT_REQUEST_TIMEOUT_MS;
|
|
170
192
|
await withRetry(
|
|
171
193
|
async () => {
|
|
172
|
-
const resp = await
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
194
|
+
const resp = await runWithTracingSuppressed(
|
|
195
|
+
() => fetch(url, {
|
|
196
|
+
method: "POST",
|
|
197
|
+
headers: {
|
|
198
|
+
"Content-Type": "application/json",
|
|
199
|
+
...headers
|
|
200
|
+
},
|
|
201
|
+
body: JSON.stringify(body),
|
|
202
|
+
signal: AbortSignal.timeout(timeoutMs)
|
|
203
|
+
})
|
|
204
|
+
);
|
|
181
205
|
if (!resp.ok) {
|
|
182
206
|
const text = await resp.text().catch(() => "");
|
|
183
207
|
const err = new Error(
|
|
@@ -423,13 +447,16 @@ function projectIdHeaders(projectId) {
|
|
|
423
447
|
var SHUTDOWN_DEADLINE_MS = 1e4;
|
|
424
448
|
var POST_SHUTDOWN_TIMEOUT_MS = 5e3;
|
|
425
449
|
function mergePatches(target, source) {
|
|
426
|
-
var _a, _b, _c, _d;
|
|
450
|
+
var _a, _b, _c, _d, _e, _f;
|
|
427
451
|
const out = { ...target, ...source };
|
|
428
452
|
if (target.properties || source.properties) {
|
|
429
453
|
out.properties = { ...(_a = target.properties) != null ? _a : {}, ...(_b = source.properties) != null ? _b : {} };
|
|
430
454
|
}
|
|
455
|
+
if (target.featureFlags || source.featureFlags) {
|
|
456
|
+
out.featureFlags = { ...(_c = target.featureFlags) != null ? _c : {}, ...(_d = source.featureFlags) != null ? _d : {} };
|
|
457
|
+
}
|
|
431
458
|
if (target.attachments || source.attachments) {
|
|
432
|
-
out.attachments = [...(
|
|
459
|
+
out.attachments = [...(_e = target.attachments) != null ? _e : [], ...(_f = source.attachments) != null ? _f : []];
|
|
433
460
|
}
|
|
434
461
|
return out;
|
|
435
462
|
}
|
|
@@ -699,6 +726,7 @@ var EventShipper = class {
|
|
|
699
726
|
...wizardSession ? { "raindrop.wizardSession": wizardSession } : {},
|
|
700
727
|
$context: this.context
|
|
701
728
|
},
|
|
729
|
+
...accumulated.featureFlags && Object.keys(accumulated.featureFlags).length > 0 ? { feature_flags: accumulated.featureFlags } : {},
|
|
702
730
|
attachments: accumulated.attachments,
|
|
703
731
|
is_pending: isPending
|
|
704
732
|
};
|
|
@@ -1284,11 +1312,36 @@ async function* asyncGeneratorWithCurrent(span, gen) {
|
|
|
1284
1312
|
}
|
|
1285
1313
|
}
|
|
1286
1314
|
globalThis.RAINDROP_ASYNC_LOCAL_STORAGE = async_hooks.AsyncLocalStorage;
|
|
1315
|
+
var SUPPRESS_TRACING_KEY = /* @__PURE__ */ Symbol.for(
|
|
1316
|
+
"OpenTelemetry SDK Context Key SUPPRESS_TRACING"
|
|
1317
|
+
);
|
|
1318
|
+
function findOtelContextManager() {
|
|
1319
|
+
var _a;
|
|
1320
|
+
for (const sym of Object.getOwnPropertySymbols(globalThis)) {
|
|
1321
|
+
if (!((_a = sym.description) == null ? void 0 : _a.startsWith("opentelemetry.js.api."))) continue;
|
|
1322
|
+
const api = globalThis[sym];
|
|
1323
|
+
const cm = api == null ? void 0 : api.context;
|
|
1324
|
+
if (cm && typeof cm.with === "function" && typeof cm.active === "function") {
|
|
1325
|
+
return cm;
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
return void 0;
|
|
1329
|
+
}
|
|
1330
|
+
function installTracingSuppressionHook() {
|
|
1331
|
+
if (typeof globalThis.RAINDROP_SUPPRESS_TRACING === "function") return;
|
|
1332
|
+
const hook = (fn) => {
|
|
1333
|
+
const cm = findOtelContextManager();
|
|
1334
|
+
if (!cm) return fn();
|
|
1335
|
+
return cm.with(cm.active().setValue(SUPPRESS_TRACING_KEY, true), fn);
|
|
1336
|
+
};
|
|
1337
|
+
globalThis.RAINDROP_SUPPRESS_TRACING = hook;
|
|
1338
|
+
}
|
|
1339
|
+
installTracingSuppressionHook();
|
|
1287
1340
|
|
|
1288
1341
|
// package.json
|
|
1289
1342
|
var package_default = {
|
|
1290
1343
|
name: "@raindrop-ai/ai-sdk",
|
|
1291
|
-
version: "0.0
|
|
1344
|
+
version: "0.1.0"};
|
|
1292
1345
|
|
|
1293
1346
|
// src/internal/version.ts
|
|
1294
1347
|
var libraryName = package_default.name;
|
|
@@ -2710,6 +2763,20 @@ var RaindropTelemetryIntegration = class {
|
|
|
2710
2763
|
} else if (properties && typeof properties === "object") {
|
|
2711
2764
|
result.properties = properties;
|
|
2712
2765
|
}
|
|
2766
|
+
const featureFlags = metadata["raindrop.featureFlags"];
|
|
2767
|
+
if (typeof featureFlags === "string") {
|
|
2768
|
+
try {
|
|
2769
|
+
const parsed = JSON.parse(featureFlags);
|
|
2770
|
+
if (parsed && typeof parsed === "object") {
|
|
2771
|
+
result.featureFlags = normalizeFeatureFlags(parsed);
|
|
2772
|
+
}
|
|
2773
|
+
} catch (e) {
|
|
2774
|
+
}
|
|
2775
|
+
} else if (featureFlags && typeof featureFlags === "object") {
|
|
2776
|
+
result.featureFlags = normalizeFeatureFlags(
|
|
2777
|
+
featureFlags
|
|
2778
|
+
);
|
|
2779
|
+
}
|
|
2713
2780
|
return result;
|
|
2714
2781
|
}
|
|
2715
2782
|
/**
|
|
@@ -2924,7 +2991,7 @@ var RaindropTelemetryIntegration = class {
|
|
|
2924
2991
|
* same event ID into a separate canonical row.
|
|
2925
2992
|
*/
|
|
2926
2993
|
finalizeGenerateEvent(state, output, model, keepPending = false) {
|
|
2927
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
2994
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i;
|
|
2928
2995
|
const suppressSubagentEvent = state.subagentName !== void 0 && state.subagentToolCallSpan !== void 0;
|
|
2929
2996
|
if (!this.sendEvents || suppressSubagentEvent) return;
|
|
2930
2997
|
const callMeta = this.extractRaindropMetadata(state.metadata);
|
|
@@ -2937,7 +3004,11 @@ var RaindropTelemetryIntegration = class {
|
|
|
2937
3004
|
...(_f = this.defaultContext) == null ? void 0 : _f.properties,
|
|
2938
3005
|
...callMeta.properties
|
|
2939
3006
|
};
|
|
2940
|
-
const
|
|
3007
|
+
const featureFlags = {
|
|
3008
|
+
...(_g = this.defaultContext) == null ? void 0 : _g.featureFlags,
|
|
3009
|
+
...callMeta.featureFlags
|
|
3010
|
+
};
|
|
3011
|
+
const convoId = (_i = callMeta.convoId) != null ? _i : (_h = this.defaultContext) == null ? void 0 : _h.convoId;
|
|
2941
3012
|
void this.eventShipper.patch(state.eventId, {
|
|
2942
3013
|
eventName,
|
|
2943
3014
|
userId,
|
|
@@ -2946,6 +3017,7 @@ var RaindropTelemetryIntegration = class {
|
|
|
2946
3017
|
output: cappedOutput,
|
|
2947
3018
|
model,
|
|
2948
3019
|
properties: Object.keys(properties).length > 0 ? properties : void 0,
|
|
3020
|
+
featureFlags: Object.keys(featureFlags).length > 0 ? featureFlags : void 0,
|
|
2949
3021
|
isPending: keepPending
|
|
2950
3022
|
}).catch((err) => {
|
|
2951
3023
|
if (this.debug) {
|
|
@@ -3269,6 +3341,20 @@ function extractRaindropMetadata(metadata) {
|
|
|
3269
3341
|
} else if (properties && typeof properties === "object") {
|
|
3270
3342
|
result.properties = properties;
|
|
3271
3343
|
}
|
|
3344
|
+
const featureFlags = metadata["raindrop.featureFlags"];
|
|
3345
|
+
if (typeof featureFlags === "string") {
|
|
3346
|
+
try {
|
|
3347
|
+
const parsed = JSON.parse(featureFlags);
|
|
3348
|
+
if (parsed && typeof parsed === "object") {
|
|
3349
|
+
result.featureFlags = normalizeFeatureFlags(parsed);
|
|
3350
|
+
}
|
|
3351
|
+
} catch (e) {
|
|
3352
|
+
}
|
|
3353
|
+
} else if (featureFlags && typeof featureFlags === "object") {
|
|
3354
|
+
result.featureFlags = normalizeFeatureFlags(
|
|
3355
|
+
featureFlags
|
|
3356
|
+
);
|
|
3357
|
+
}
|
|
3272
3358
|
return result;
|
|
3273
3359
|
}
|
|
3274
3360
|
function mergeContexts(wrapTime, callTime) {
|
|
@@ -3283,6 +3369,10 @@ function mergeContexts(wrapTime, callTime) {
|
|
|
3283
3369
|
...callTime.properties
|
|
3284
3370
|
};
|
|
3285
3371
|
}
|
|
3372
|
+
if (callTime.featureFlags) {
|
|
3373
|
+
const wrapTimeFlags = wrapTime.featureFlags ? normalizeFeatureFlags(wrapTime.featureFlags) : {};
|
|
3374
|
+
result.featureFlags = { ...wrapTimeFlags, ...callTime.featureFlags };
|
|
3375
|
+
}
|
|
3286
3376
|
return result;
|
|
3287
3377
|
}
|
|
3288
3378
|
function detectAISDKVersion(aiSDK) {
|
|
@@ -3595,6 +3685,7 @@ function createFinalize(params) {
|
|
|
3595
3685
|
output: defaultOutput,
|
|
3596
3686
|
model,
|
|
3597
3687
|
properties: setup.ctx.properties,
|
|
3688
|
+
featureFlags: setup.ctx.featureFlags ? normalizeFeatureFlags(setup.ctx.featureFlags) : void 0,
|
|
3598
3689
|
attachments: mergeAttachments(setup.ctx.attachments, inputAttachments, outputAttachments)
|
|
3599
3690
|
};
|
|
3600
3691
|
const built = await maybeBuildEvent(options.buildEvent, allMessages);
|
|
@@ -3648,6 +3739,7 @@ function createFinalize(params) {
|
|
|
3648
3739
|
output,
|
|
3649
3740
|
model: finalModel,
|
|
3650
3741
|
properties: patch.properties,
|
|
3742
|
+
featureFlags: patch.featureFlags,
|
|
3651
3743
|
attachments: patch.attachments,
|
|
3652
3744
|
isPending: keepEventPending
|
|
3653
3745
|
}).catch((err) => {
|
|
@@ -3879,7 +3971,8 @@ function wrapAISDK(aiSDK, deps) {
|
|
|
3879
3971
|
eventId: wrapTimeCtx.eventId,
|
|
3880
3972
|
eventName: wrapTimeCtx.eventName,
|
|
3881
3973
|
convoId: wrapTimeCtx.convoId,
|
|
3882
|
-
properties: wrapTimeCtx.properties
|
|
3974
|
+
properties: wrapTimeCtx.properties,
|
|
3975
|
+
featureFlags: wrapTimeCtx.featureFlags ? normalizeFeatureFlags(wrapTimeCtx.featureFlags) : void 0
|
|
3883
3976
|
}
|
|
3884
3977
|
});
|
|
3885
3978
|
const registerFn = resolveRegisterTelemetry(aiSDK);
|
|
@@ -4155,6 +4248,7 @@ function wrapAgentGenerate(generate, instance, agentSettings, className, aiSDK,
|
|
|
4155
4248
|
output: outputText,
|
|
4156
4249
|
model,
|
|
4157
4250
|
properties: ctx.properties,
|
|
4251
|
+
featureFlags: ctx.featureFlags ? normalizeFeatureFlags(ctx.featureFlags) : void 0,
|
|
4158
4252
|
attachments: mergeAttachments(ctx.attachments, inputAttachments, outputAttachments)
|
|
4159
4253
|
};
|
|
4160
4254
|
const built = await maybeBuildEvent(deps.options.buildEvent, allMessages);
|
|
@@ -4222,6 +4316,7 @@ function wrapAgentGenerate(generate, instance, agentSettings, className, aiSDK,
|
|
|
4222
4316
|
output,
|
|
4223
4317
|
model: finalModel,
|
|
4224
4318
|
properties: patch.properties,
|
|
4319
|
+
featureFlags: patch.featureFlags,
|
|
4225
4320
|
attachments: patch.attachments,
|
|
4226
4321
|
isPending: false
|
|
4227
4322
|
}).catch((err) => {
|
|
@@ -4363,6 +4458,7 @@ function wrapAgentStream(stream, instance, agentSettings, className, aiSDK, deps
|
|
|
4363
4458
|
output: outputText,
|
|
4364
4459
|
model,
|
|
4365
4460
|
properties: ctx.properties,
|
|
4461
|
+
featureFlags: ctx.featureFlags ? normalizeFeatureFlags(ctx.featureFlags) : void 0,
|
|
4366
4462
|
attachments: mergeAttachments(ctx.attachments, inputAttachments, outputAttachments)
|
|
4367
4463
|
};
|
|
4368
4464
|
const built = await maybeBuildEvent(deps.options.buildEvent, allMessages);
|
|
@@ -4430,6 +4526,7 @@ function wrapAgentStream(stream, instance, agentSettings, className, aiSDK, deps
|
|
|
4430
4526
|
output,
|
|
4431
4527
|
model: finalModel,
|
|
4432
4528
|
properties: patch.properties,
|
|
4529
|
+
featureFlags: patch.featureFlags,
|
|
4433
4530
|
attachments: patch.attachments,
|
|
4434
4531
|
isPending: false
|
|
4435
4532
|
}).catch((err) => {
|
|
@@ -5027,7 +5124,7 @@ async function maybeBuildEvent(buildEvent, messages) {
|
|
|
5027
5124
|
}
|
|
5028
5125
|
}
|
|
5029
5126
|
function mergeBuildEventPatch(defaults, override) {
|
|
5030
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
5127
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
5031
5128
|
if (!override) return defaults;
|
|
5032
5129
|
return {
|
|
5033
5130
|
eventName: (_a = override.eventName) != null ? _a : defaults.eventName,
|
|
@@ -5035,7 +5132,8 @@ function mergeBuildEventPatch(defaults, override) {
|
|
|
5035
5132
|
output: (_c = override.output) != null ? _c : defaults.output,
|
|
5036
5133
|
model: (_d = override.model) != null ? _d : defaults.model,
|
|
5037
5134
|
properties: override.properties !== void 0 ? { ...(_e = defaults.properties) != null ? _e : {}, ...(_f = override.properties) != null ? _f : {} } : defaults.properties,
|
|
5038
|
-
|
|
5135
|
+
featureFlags: override.featureFlags !== void 0 ? { ...(_g = defaults.featureFlags) != null ? _g : {}, ...(_h = override.featureFlags) != null ? _h : {} } : defaults.featureFlags,
|
|
5136
|
+
attachments: override.attachments !== void 0 ? [...(_i = defaults.attachments) != null ? _i : [], ...(_j = override.attachments) != null ? _j : []] : defaults.attachments
|
|
5039
5137
|
};
|
|
5040
5138
|
}
|
|
5041
5139
|
function mergeAttachments(...groups) {
|
|
@@ -5066,6 +5164,8 @@ function eventMetadata(options) {
|
|
|
5066
5164
|
if (options.convoId) result["raindrop.convoId"] = options.convoId;
|
|
5067
5165
|
if (options.eventName) result["raindrop.eventName"] = options.eventName;
|
|
5068
5166
|
if (options.properties) result["raindrop.properties"] = JSON.stringify(options.properties);
|
|
5167
|
+
if (options.featureFlags)
|
|
5168
|
+
result["raindrop.featureFlags"] = JSON.stringify(normalizeFeatureFlags(options.featureFlags));
|
|
5069
5169
|
return result;
|
|
5070
5170
|
}
|
|
5071
5171
|
function deriveChatTurnMessageId(request) {
|
|
@@ -5170,7 +5270,8 @@ function createRaindropAISDK(opts) {
|
|
|
5170
5270
|
"eventId",
|
|
5171
5271
|
"eventName",
|
|
5172
5272
|
"convoId",
|
|
5173
|
-
"properties"
|
|
5273
|
+
"properties",
|
|
5274
|
+
"featureFlags"
|
|
5174
5275
|
];
|
|
5175
5276
|
let context;
|
|
5176
5277
|
let subagentWrapping;
|
|
@@ -5202,6 +5303,9 @@ function createRaindropAISDK(opts) {
|
|
|
5202
5303
|
async setProperties(eventId, properties) {
|
|
5203
5304
|
await eventShipper.patch(eventId, { properties });
|
|
5204
5305
|
},
|
|
5306
|
+
async setFeatureFlags(eventId, featureFlags) {
|
|
5307
|
+
await eventShipper.patch(eventId, { featureFlags: normalizeFeatureFlags(featureFlags) });
|
|
5308
|
+
},
|
|
5205
5309
|
async finish(eventId, patch) {
|
|
5206
5310
|
await eventShipper.finish(eventId, patch);
|
|
5207
5311
|
}
|
|
@@ -5328,6 +5432,7 @@ exports.eventMetadataFromChatRequest = eventMetadataFromChatRequest;
|
|
|
5328
5432
|
exports.getContextManager = getContextManager;
|
|
5329
5433
|
exports.getCurrentParentToolContext = getCurrentParentToolContext;
|
|
5330
5434
|
exports.getCurrentRaindropCallMetadata = getCurrentRaindropCallMetadata;
|
|
5435
|
+
exports.normalizeFeatureFlags = normalizeFeatureFlags;
|
|
5331
5436
|
exports.raindrop = raindrop;
|
|
5332
5437
|
exports.readRaindropCallMetadataFromArgs = readRaindropCallMetadataFromArgs;
|
|
5333
5438
|
exports.redactJsonAttributeValue = redactJsonAttributeValue;
|
package/dist/index.workers.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { DEFAULT_MAX_TEXT_FIELD_CHARS, DEFAULT_REDACT_ATTRIBUTE_KEYS, DEFAULT_SECRET_KEY_NAMES, REDACTED_PLACEHOLDER, RaindropTelemetryIntegration, TRUNCATION_MARKER, _resetParentToolContextStorage, _resetRaindropCallMetadataStorage, _resetWarnedMissingUserId, boundedStringify, capText, clearParentToolContext, createRaindropAISDK, currentSpan, defaultTransformSpan, enterParentToolContext, eventMetadata, eventMetadataFromChatRequest, getContextManager, getCurrentParentToolContext, getCurrentRaindropCallMetadata, raindrop, readRaindropCallMetadataFromArgs, redactJsonAttributeValue, redactSecretsInObject, runWithParentToolContext, runWithRaindropCallMetadata, withCurrent } from './chunk-
|
|
1
|
+
export { DEFAULT_MAX_TEXT_FIELD_CHARS, DEFAULT_REDACT_ATTRIBUTE_KEYS, DEFAULT_SECRET_KEY_NAMES, REDACTED_PLACEHOLDER, RaindropTelemetryIntegration, TRUNCATION_MARKER, _resetParentToolContextStorage, _resetRaindropCallMetadataStorage, _resetWarnedMissingUserId, boundedStringify, capText, clearParentToolContext, createRaindropAISDK, currentSpan, defaultTransformSpan, enterParentToolContext, eventMetadata, eventMetadataFromChatRequest, getContextManager, getCurrentParentToolContext, getCurrentRaindropCallMetadata, normalizeFeatureFlags, raindrop, readRaindropCallMetadataFromArgs, redactJsonAttributeValue, redactSecretsInObject, runWithParentToolContext, runWithRaindropCallMetadata, withCurrent } from './chunk-ETGFVXYM.mjs';
|
|
2
2
|
import { AsyncLocalStorage } from 'async_hooks';
|
|
3
3
|
|
|
4
4
|
if (!globalThis.RAINDROP_ASYNC_LOCAL_STORAGE) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raindrop-ai/ai-sdk",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Standalone Vercel AI SDK integration for Raindrop (events + OTLP/HTTP JSON traces, no OTEL runtime)",
|
|
5
5
|
"main": "dist/index.node.js",
|
|
6
6
|
"module": "dist/index.node.mjs",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsup": "^8.4.0",
|
|
38
38
|
"tsx": "^4.20.3",
|
|
39
39
|
"typescript": "^5.3.3",
|
|
40
|
-
"@raindrop-ai/core": "0.0
|
|
40
|
+
"@raindrop-ai/core": "0.1.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"ai": ">=4 <8"
|