From 6b976fc1ca3e1c8435bc3a39bcd1c0cd36dd2f77 Mon Sep 17 00:00:00 2001 From: ValueOn AG Date: Sun, 5 Oct 2025 15:10:33 +0200 Subject: [PATCH] cleaned up workflow management --- .../processing/shared/placeholderFactory.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/workflows/processing/shared/placeholderFactory.py b/modules/workflows/processing/shared/placeholderFactory.py index e79c75a2..1be4aa19 100644 --- a/modules/workflows/processing/shared/placeholderFactory.py +++ b/modules/workflows/processing/shared/placeholderFactory.py @@ -8,16 +8,16 @@ NAMING CONVENTION: - Placeholder names are in UPPER_CASE with underscores - Function names are in camelCase -MAPPING TABLE (keys → function) with usage [global | react | actionplan]: -{{KEY:USER_PROMPT}} -> extractUserPrompt() [global, react, actionplan] -{{KEY:USER_LANGUAGE}} -> extractUserLanguage() [react, actionplan] -{{KEY:AVAILABLE_DOCUMENTS_SUMMARY}} -> extractAvailableDocumentsSummary() [react, actionplan] +MAPPING TABLE (keys → function) with usage [taskplan | actionplan | react]: +{{KEY:USER_PROMPT}} -> extractUserPrompt() [taskplan, actionplan, react] +{{KEY:USER_LANGUAGE}} -> extractUserLanguage() [actionplan, react] +{{KEY:WORKFLOW_HISTORY}} -> extractWorkflowHistory() [taskplan, actionplan] +{{KEY:AVAILABLE_CONNECTIONS_INDEX}} -> extractAvailableConnectionsIndex() [actionplan, react] +{{KEY:AVAILABLE_CONNECTIONS_SUMMARY}} -> extractAvailableConnectionsSummary() [] +{{KEY:AVAILABLE_DOCUMENTS_SUMMARY}} -> extractAvailableDocumentsSummary() [taskplan, actionplan, react] {{KEY:AVAILABLE_DOCUMENTS_INDEX}} -> extractAvailableDocumentsIndex() [react] -{{KEY:AVAILABLE_CONNECTIONS_INDEX}} -> extractAvailableConnectionsIndex() [react, actionplan] -{{KEY:AVAILABLE_CONNECTIONS_SUMMARY}} -> extractAvailableConnectionsSummary() [unused] -{{KEY:WORKFLOW_HISTORY}} -> extractWorkflowHistory() [actionplan] -{{KEY:AVAILABLE_METHODS}} -> extractAvailableMethods() [react, actionplan] -{{KEY:REVIEW_CONTENT}} -> extractReviewContent() [react, actionplan] +{{KEY:AVAILABLE_METHODS}} -> extractAvailableMethods() [actionplan, react] +{{KEY:REVIEW_CONTENT}} -> extractReviewContent() [actionplan, react] {{KEY:PREVIOUS_ACTION_RESULTS}} -> extractPreviousActionResults() [react] {{KEY:LEARNINGS_AND_IMPROVEMENTS}} -> extractLearningsAndImprovements() [react] {{KEY:LATEST_REFINEMENT_FEEDBACK}} -> extractLatestRefinementFeedback() [react]