@vellumai/plugin-api 0.10.4-dev.202607021059.195c867 → 0.10.4-dev.202607021247.94bb87f
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/index.d.ts +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4118,6 +4118,18 @@ export declare interface ToolContext {
|
|
|
4118
4118
|
* @legacy
|
|
4119
4119
|
*/
|
|
4120
4120
|
sourceActorPrincipalId?: string;
|
|
4121
|
+
/**
|
|
4122
|
+
* The conversation's effective per-chat plugin scope, as produced by
|
|
4123
|
+
* `getEffectiveEnabledPluginSet`: `null` means no per-chat restriction;
|
|
4124
|
+
* otherwise a Set of allowed plugin ids (the user's selection unioned with
|
|
4125
|
+
* the always-on first-party defaults). Skill-surface tools that resolve
|
|
4126
|
+
* skills by id outside the per-turn projection — `skill_load` (body load)
|
|
4127
|
+
* and `find_similar_skills` (discovery) — read this to drop skills owned by
|
|
4128
|
+
* plugins outside the conversation's scope. Populated per tool call from the
|
|
4129
|
+
* live conversation state.
|
|
4130
|
+
* @legacy
|
|
4131
|
+
*/
|
|
4132
|
+
enabledPluginSet?: Set<string> | null;
|
|
4121
4133
|
}
|
|
4122
4134
|
|
|
4123
4135
|
/**
|
package/package.json
CHANGED