@vellumai/plugin-api 0.10.3-dev.202606292252.adea010 → 0.10.3-dev.202606300318.cf23f52
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 +9 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2904,13 +2904,10 @@ export declare interface PostCompactContext {
|
|
|
2904
2904
|
*/
|
|
2905
2905
|
readonly isNonInteractive: boolean;
|
|
2906
2906
|
/**
|
|
2907
|
-
*
|
|
2908
|
-
*
|
|
2909
|
-
* model. Mirrors {@link UserPromptSubmitContext.modelProfileKey}: hooks that
|
|
2910
|
-
* emit the `model_profile` grounding line resolve the human-readable label
|
|
2911
|
-
* from this key rather than receiving the rendered string.
|
|
2907
|
+
* Effective inference profile identity for the model the compacted turn will
|
|
2908
|
+
* keep using. Mirrors {@link UserPromptSubmitContext.modelProfileKey}.
|
|
2912
2909
|
*/
|
|
2913
|
-
readonly modelProfileKey: string
|
|
2910
|
+
readonly modelProfileKey: string;
|
|
2914
2911
|
/**
|
|
2915
2912
|
* Volume of runtime injection to re-apply. `"full"` restores the complete
|
|
2916
2913
|
* runtime context; `"minimal"` is the reduced volume overflow recovery's
|
|
@@ -4976,14 +4973,13 @@ export declare interface UserPromptSubmitContext {
|
|
|
4976
4973
|
*/
|
|
4977
4974
|
readonly requestId: string;
|
|
4978
4975
|
/**
|
|
4979
|
-
*
|
|
4980
|
-
*
|
|
4981
|
-
* Hooks that
|
|
4982
|
-
*
|
|
4983
|
-
*
|
|
4984
|
-
* turn input the message arrays cannot carry.
|
|
4976
|
+
* Effective inference profile identity for the model this turn will use.
|
|
4977
|
+
* Named-profile configs receive a profile key; profileless configs receive
|
|
4978
|
+
* the resolved model id. Hooks that need model capabilities should resolve
|
|
4979
|
+
* them from this value rather than the workspace active profile, because a
|
|
4980
|
+
* conversation can be pinned to a different profile.
|
|
4985
4981
|
*/
|
|
4986
|
-
readonly modelProfileKey: string
|
|
4982
|
+
readonly modelProfileKey: string;
|
|
4987
4983
|
/**
|
|
4988
4984
|
* Whether the turn has no human present to answer clarification questions
|
|
4989
4985
|
* (e.g. a scheduled, background, or headless run). Resolved once at turn
|
package/package.json
CHANGED