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