chore: include pre-built dist for github install
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import type { BackgroundTask } from "../../features/background-agent";
|
||||
export declare const THINKING_SUMMARY_MAX_CHARS: 500;
|
||||
type MessageInfo = {
|
||||
role?: string;
|
||||
agent?: string;
|
||||
model?: {
|
||||
providerID: string;
|
||||
modelID: string;
|
||||
};
|
||||
providerID?: string;
|
||||
modelID?: string;
|
||||
tools?: Record<string, boolean | "allow" | "deny" | "ask">;
|
||||
};
|
||||
type MessagePart = {
|
||||
type?: string;
|
||||
text?: string;
|
||||
thinking?: string;
|
||||
};
|
||||
export declare function getMessageInfo(value: unknown): MessageInfo | undefined;
|
||||
export declare function getMessageParts(value: unknown): MessagePart[];
|
||||
export declare function extractMessages(value: unknown): unknown[];
|
||||
export declare function isUnstableTask(task: BackgroundTask): boolean;
|
||||
export declare function buildReminder(task: BackgroundTask, summary: string | null, idleMs: number): string;
|
||||
export {};
|
||||
Reference in New Issue
Block a user