chore: include pre-built dist for github install
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import type { CategoryConfig } from "../config/schema";
|
||||
type PrometheusOverride = Record<string, unknown> & {
|
||||
category?: string;
|
||||
model?: string;
|
||||
variant?: string;
|
||||
reasoningEffort?: string;
|
||||
textVerbosity?: string;
|
||||
thinking?: {
|
||||
type: string;
|
||||
budgetTokens?: number;
|
||||
};
|
||||
temperature?: number;
|
||||
top_p?: number;
|
||||
maxTokens?: number;
|
||||
prompt_append?: string;
|
||||
};
|
||||
export declare function buildPrometheusAgentConfig(params: {
|
||||
configAgentPlan: Record<string, unknown> | undefined;
|
||||
pluginPrometheusOverride: PrometheusOverride | undefined;
|
||||
userCategories: Record<string, CategoryConfig> | undefined;
|
||||
currentModel: string | undefined;
|
||||
}): Promise<Record<string, unknown>>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user