@vellumai/plugin-api 0.9.0-dev.202606191605.b512a80 → 0.9.0-dev.202606191743.3f533cf

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.
Files changed (2) hide show
  1. package/index.d.ts +8 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3946,6 +3946,14 @@ export declare interface ToolContext {
3946
3946
  * `executeSubagentSpawn` in tools/subagent/spawn.ts.
3947
3947
  */
3948
3948
  overrideProfile?: string;
3949
+ /**
3950
+ * The LLM call site of the turn currently executing this tool (`mainAgent`,
3951
+ * `heartbeatAgent`, scheduled work, etc.). `subagent_spawn` reads it to
3952
+ * default a spawned subagent's inference profile to the profile the invoking
3953
+ * turn resolved to, so subagents match whatever agent invoked them rather
3954
+ * than always falling back to the static `subagentSpawn` call-site default.
3955
+ */
3956
+ invokingCallSite?: LLMCallSite;
3949
3957
  /**
3950
3958
  * Canonical principal ID of the actor on whose behalf this tool invocation
3951
3959
  * is running. Sourced from `conversation.trustContext.guardianPrincipalId`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.9.0-dev.202606191605.b512a80",
3
+ "version": "0.9.0-dev.202606191743.3f533cf",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",