refactor(gui): Unify prompt analysis components for actor, intent decoder and Handoff

This commit is contained in:
rhit-lid2
2026-07-19 16:18:15 +05:30
parent f8977a14c6
commit 1e34becec7
9 changed files with 381 additions and 480 deletions

View File

@@ -1,3 +1,15 @@
export * from "./dehydration.js";
export * from "./hydration.js";
export * from "./contractions.js";
export interface PromptComponent {
label: string;
type: "system" | "world" | "events" | "memories" | "input" | "other";
content: string;
}
export interface PromptBreakdown {
systemPrompt: string;
userContext: string;
components?: PromptComponent[];
}