@vellumai/plugin-api 0.10.12-dev.202607262324.6e65db7 → 0.10.12-dev.202607270141.42f7d3c

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 +7 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3971,6 +3971,13 @@ export declare interface Provider {
3971
3971
  * Falls back to `name` when unset.
3972
3972
  */
3973
3973
  tokenEstimationProvider?: string;
3974
+ /**
3975
+ * Model id this instance dispatches when a call carries no per-call model
3976
+ * override. Consumed by the local token estimator for model-keyed rules
3977
+ * (e.g. audio-capable OpenAI-compatible models). Optional: providers whose
3978
+ * estimation rules are provider-wide need not expose it.
3979
+ */
3980
+ defaultModel?: string;
3974
3981
  /**
3975
3982
  * True when this provider instance was constructed to run web search
3976
3983
  * server-side (provider-native). The native search only activates when a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.12-dev.202607262324.6e65db7",
3
+ "version": "0.10.12-dev.202607270141.42f7d3c",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",