@vellumai/plugin-api 0.10.9-dev.202607152124.584d617 → 0.10.9-dev.202607152225.ec6fdbf
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 +2 -77
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -710,82 +710,6 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
710
710
|
retentionDays: z.ZodDefault<z.ZodNumber>;
|
|
711
711
|
}, z.core.$strip>>;
|
|
712
712
|
llm: z.ZodDefault<z.ZodObject<{
|
|
713
|
-
default: z.ZodDefault<z.ZodObject<{
|
|
714
|
-
provider: z.ZodDefault<z.ZodEnum<{
|
|
715
|
-
anthropic: "anthropic";
|
|
716
|
-
openai: "openai";
|
|
717
|
-
gemini: "gemini";
|
|
718
|
-
fireworks: "fireworks";
|
|
719
|
-
openrouter: "openrouter";
|
|
720
|
-
ollama: "ollama";
|
|
721
|
-
"vercel-ai-gateway": "vercel-ai-gateway";
|
|
722
|
-
"openai-compatible": "openai-compatible";
|
|
723
|
-
minimax: "minimax";
|
|
724
|
-
atlascloud: "atlascloud";
|
|
725
|
-
together: "together";
|
|
726
|
-
}>>;
|
|
727
|
-
provider_connection: z.ZodOptional<z.ZodString>;
|
|
728
|
-
model: z.ZodDefault<z.ZodString>;
|
|
729
|
-
maxTokens: z.ZodDefault<z.ZodNumber>;
|
|
730
|
-
effort: z.ZodDefault<z.ZodEnum<{
|
|
731
|
-
low: "low";
|
|
732
|
-
medium: "medium";
|
|
733
|
-
high: "high";
|
|
734
|
-
none: "none";
|
|
735
|
-
xhigh: "xhigh";
|
|
736
|
-
max: "max";
|
|
737
|
-
}>>;
|
|
738
|
-
speed: z.ZodDefault<z.ZodEnum<{
|
|
739
|
-
standard: "standard";
|
|
740
|
-
fast: "fast";
|
|
741
|
-
}>>;
|
|
742
|
-
verbosity: z.ZodDefault<z.ZodEnum<{
|
|
743
|
-
low: "low";
|
|
744
|
-
medium: "medium";
|
|
745
|
-
high: "high";
|
|
746
|
-
}>>;
|
|
747
|
-
temperature: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
748
|
-
topP: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
749
|
-
thinking: z.ZodDefault<z.ZodObject<{
|
|
750
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
751
|
-
streamThinking: z.ZodDefault<z.ZodBoolean>;
|
|
752
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
753
|
-
low: "low";
|
|
754
|
-
medium: "medium";
|
|
755
|
-
high: "high";
|
|
756
|
-
minimal: "minimal";
|
|
757
|
-
}>>;
|
|
758
|
-
}, z.core.$strip>>;
|
|
759
|
-
contextWindow: z.ZodDefault<z.ZodObject<{
|
|
760
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
761
|
-
maxInputTokens: z.ZodDefault<z.ZodNumber>;
|
|
762
|
-
targetBudgetRatio: z.ZodDefault<z.ZodNumber>;
|
|
763
|
-
compactThreshold: z.ZodDefault<z.ZodNumber>;
|
|
764
|
-
summaryBudgetRatio: z.ZodDefault<z.ZodNumber>;
|
|
765
|
-
overflowRecovery: z.ZodDefault<z.ZodObject<{
|
|
766
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
767
|
-
safetyMarginRatio: z.ZodDefault<z.ZodNumber>;
|
|
768
|
-
maxAttempts: z.ZodDefault<z.ZodNumber>;
|
|
769
|
-
interactiveLatestTurnCompression: z.ZodDefault<z.ZodEnum<{
|
|
770
|
-
truncate: "truncate";
|
|
771
|
-
summarize: "summarize";
|
|
772
|
-
drop: "drop";
|
|
773
|
-
}>>;
|
|
774
|
-
nonInteractiveLatestTurnCompression: z.ZodDefault<z.ZodEnum<{
|
|
775
|
-
truncate: "truncate";
|
|
776
|
-
summarize: "summarize";
|
|
777
|
-
drop: "drop";
|
|
778
|
-
}>>;
|
|
779
|
-
}, z.core.$strip>>;
|
|
780
|
-
}, z.core.$strip>>;
|
|
781
|
-
openrouter: z.ZodDefault<z.ZodObject<{
|
|
782
|
-
only: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
783
|
-
}, z.core.$strip>>;
|
|
784
|
-
logitBias: z.ZodOptional<z.ZodEnum<{
|
|
785
|
-
"suppress-cjk": "suppress-cjk";
|
|
786
|
-
}>>;
|
|
787
|
-
disableCache: z.ZodOptional<z.ZodBoolean>;
|
|
788
|
-
}, z.core.$strip>>;
|
|
789
713
|
profiles: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
790
714
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
791
715
|
anthropic: "anthropic";
|
|
@@ -5099,7 +5023,8 @@ export declare interface SendMessageConfig {
|
|
|
5099
5023
|
* LLM call-site identifier. `RetryProvider` resolves
|
|
5100
5024
|
* provider/model/maxTokens/effort/speed/verbosity/temperature/thinking/
|
|
5101
5025
|
* contextWindow via `resolveCallSiteConfig(callSite, config.llm)`, falling
|
|
5102
|
-
* back to
|
|
5026
|
+
* back to the shipped call-site defaults when no callSite-specific entry
|
|
5027
|
+
* is present.
|
|
5103
5028
|
*/
|
|
5104
5029
|
callSite?: LLMCallSite;
|
|
5105
5030
|
/**
|
package/package.json
CHANGED