@vellumai/plugin-api 0.10.12-dev.202607281935.fa0f06f → 0.10.12-dev.202607282129.b0efc32
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 +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2181,6 +2181,7 @@ declare const AssistantEventEnvelopeSchema: z.ZodObject<{
|
|
|
2181
2181
|
brave: "brave";
|
|
2182
2182
|
perplexity: "perplexity";
|
|
2183
2183
|
tavily: "tavily";
|
|
2184
|
+
keenable: "keenable";
|
|
2184
2185
|
firecrawl: "firecrawl";
|
|
2185
2186
|
}>;
|
|
2186
2187
|
resultCount: z.ZodNumber;
|
|
@@ -3541,6 +3542,7 @@ declare const AssistantEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3541
3542
|
brave: "brave";
|
|
3542
3543
|
perplexity: "perplexity";
|
|
3543
3544
|
tavily: "tavily";
|
|
3545
|
+
keenable: "keenable";
|
|
3544
3546
|
firecrawl: "firecrawl";
|
|
3545
3547
|
}>;
|
|
3546
3548
|
resultCount: z.ZodNumber;
|
|
@@ -5446,7 +5448,9 @@ declare type ResolutionFallbackReason = "missing" | "disabled" | "incomplete";
|
|
|
5446
5448
|
* sits at the top of the chain for every call site.
|
|
5447
5449
|
*
|
|
5448
5450
|
* Profile names are resolved against the effective profile catalog
|
|
5449
|
-
* (code-defined defaults + workspace `llm.profiles
|
|
5451
|
+
* (code-defined defaults + workspace `llm.profiles`), with default profile
|
|
5452
|
+
* keys resolved through `llm.defaultProvider`'s column of the intent ×
|
|
5453
|
+
* provider matrix (see `resolveDefaultProfileForProvider`).
|
|
5450
5454
|
* A "mix" profile is expanded to one of its arms by a seeded weighted pick (see
|
|
5451
5455
|
* `resolveProfileFragment` and `opts.selectionSeed`), uniformly wherever a name
|
|
5452
5456
|
* is dereferenced. Missing references silently fall through (no throw) so the
|
|
@@ -6911,7 +6915,7 @@ declare interface WebSearchMetadata {
|
|
|
6911
6915
|
errorMessage?: string;
|
|
6912
6916
|
}
|
|
6913
6917
|
|
|
6914
|
-
declare type WebSearchProviderId = "anthropic-native" | "brave" | "perplexity" | "tavily" | "firecrawl";
|
|
6918
|
+
declare type WebSearchProviderId = "anthropic-native" | "brave" | "perplexity" | "tavily" | "keenable" | "firecrawl";
|
|
6915
6919
|
|
|
6916
6920
|
declare interface WebSearchResultItem {
|
|
6917
6921
|
rank: number;
|
package/package.json
CHANGED