pyrit.prompt_converter.LeetspeakConverter#
- class LeetspeakConverter(*, deterministic: bool = True, custom_substitutions: dict | None = None, word_selection_strategy: WordSelectionStrategy | None = None)[source]#
Bases:
WordLevelConverterConverts a string to a leetspeak version.
- __init__(*, deterministic: bool = True, custom_substitutions: dict | None = None, word_selection_strategy: WordSelectionStrategy | None = None)[source]#
Initializes the converter with optional deterministic mode and custom substitutions.
- Parameters:
deterministic (bool) – If True, use the first substitution for each character. If False, randomly choose a substitution for each character.
custom_substitutions (Optional[dict]) – A dictionary of custom substitutions to override the defaults.
word_selection_strategy (Optional[WordSelectionStrategy]) – Strategy for selecting which words to convert. If None, all words will be converted.
Methods
__init__(*[, deterministic, ...])Initializes the converter with optional deterministic mode and custom substitutions.
convert_async(*, prompt[, input_type])Converts the given prompt into the target format supported by the converter.
convert_tokens_async(*, prompt[, ...])Converts substrings within a prompt that are enclosed by specified start and end tokens.
convert_word_async(word)Converts a single word into the target format supported by the converter.
get_identifier()Returns an identifier dictionary for the converter.
input_supported(input_type)Checks if the input type is supported by the converter.
join_words(words)Provides a way for subclasses to override the default behavior of joining words.
output_supported(output_type)Checks if the output type is supported by the converter.
validate_input(prompt)Validates the input before processing (can be overridden by subclasses).
Attributes
supported_input_typesReturns a list of supported input types for the converter.
supported_output_typesReturns a list of supported output types for the converter.