tessl install tessl/pypi-python-bidi@0.6.0Python Bidi layout wrapping the Rust crate unicode-bidi
Agent Success
Agent success rate when using this tile
93%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.09x
Baseline
Agent success rate without this tile
85%
A utility for formatting bilingual documents that contain mixed Hebrew and English text, converting them from logical storage order to visual display order suitable for terminal or text-based output.
@generates
def format_bilingual_text(text: str) -> str:
"""
Converts bidirectional text from logical storage order to visual display order.
Args:
text: A string containing mixed Hebrew/English text
Returns:
The text reordered for proper visual display
"""
passProvides bidirectional text algorithm implementation for handling mixed LTR/RTL text.
@satisfied-by