Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ def _try_parse_structured_data(self, result: str) -> Any:
except ValueError:
pass

# Explicitly handle boolean strings
if result.lower() == "true":
return True
elif result.lower() == "false":
return False

# Try JSON for clearly JSON-formatted results
if (result.startswith("{") and result.endswith("}")) or (
result.startswith("[") and result.endswith("]")
Expand Down
43 changes: 0 additions & 43 deletions systems/knave_1e/flows/add_items_to_character.yaml

This file was deleted.