chore: include pre-built dist for github install
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
export declare function applyModelResolution(input: {
|
||||
uiSelectedModel?: string;
|
||||
userModel?: string;
|
||||
requirement?: {
|
||||
fallbackChain?: {
|
||||
providers: string[];
|
||||
model: string;
|
||||
variant?: string;
|
||||
}[];
|
||||
};
|
||||
availableModels: Set<string>;
|
||||
systemDefaultModel?: string;
|
||||
}): import("../../shared/model-resolution-pipeline").ModelResolutionResult | undefined;
|
||||
export declare function getFirstFallbackModel(requirement?: {
|
||||
fallbackChain?: {
|
||||
providers: string[];
|
||||
model: string;
|
||||
variant?: string;
|
||||
}[];
|
||||
}): {
|
||||
model: string;
|
||||
provenance: "provider-fallback";
|
||||
variant: string | undefined;
|
||||
} | undefined;
|
||||
Reference in New Issue
Block a user