Bug Fixes. Workflow Engine #81

Merged
Lars merged 4 commits from develop into main 2026-04-12 14:08:43 +02:00
Showing only changes of commit e09cbc112e - Show all commits

View File

@ -158,7 +158,8 @@ def parse_decision_questions(section_text: str) -> Dict[str, str]:
for pattern in patterns: for pattern in patterns:
matches = re.finditer(pattern, section_text, re.MULTILINE | re.IGNORECASE) matches = re.finditer(pattern, section_text, re.MULTILINE | re.IGNORECASE)
for match in matches: for match in matches:
question_type = match.group(1).strip().lower() # Preserve original case for question IDs (e.g., "qAnalyst" not "qanalyst")
question_type = match.group(1).strip()
answer = match.group(2).strip() answer = match.group(2).strip()
# Entferne Klammern und Whitespace # Entferne Klammern und Whitespace