broken refactor

This commit is contained in:
Your Name
2026-04-07 20:59:26 +00:00
parent 370e2b9e1d
commit 256a7a83fa
21 changed files with 355 additions and 85 deletions
+7
View File
@@ -28,6 +28,13 @@ export interface ContextAccountingState {
* True if currentTokens <= retainedTokens.
*/
readonly isBudgetSatisfied: boolean;
/**
* If this pipeline was triggered by a specific event (e.g., a new turn),
* this contains the specific Node IDs (Episodes, Steps, or Triggers) that should be evaluated.
* If undefined, the processor may evaluate the entire graph.
*/
readonly targetNodeIds?: Set<string>;
}
/**