@vellumai/plugin-api 0.8.11-dev.202606112147.04177ac → 0.8.11-dev.202606112338.1c15e19
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 +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2887,6 +2887,13 @@ export declare interface PostToolUseContext {
|
|
|
2887
2887
|
* singular of Codex's `additional_contexts`. `null` means no extra context.
|
|
2888
2888
|
*/
|
|
2889
2889
|
additionalContext: string | null;
|
|
2890
|
+
/**
|
|
2891
|
+
* Model id reported by the provider for the assistant turn that issued
|
|
2892
|
+
* this tool call (e.g. `claude-opus-4-8`,
|
|
2893
|
+
* `accounts/fireworks/models/kimi-k2p6`). Hooks use it to vary coaching by
|
|
2894
|
+
* model family — some models need earlier or firmer steering than others.
|
|
2895
|
+
*/
|
|
2896
|
+
readonly model: string;
|
|
2890
2897
|
/**
|
|
2891
2898
|
* The model's context-window size in tokens. Plugins derive their own
|
|
2892
2899
|
* character budget from this (e.g. a share of the window) rather than
|
package/package.json
CHANGED