@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.
- package/index.d.ts +8 -0
- 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