pyrit.prompt_converter.EmojiConverter#

class EmojiConverter[source]#

Bases: PromptConverter

__init__()#

Methods

__init__()

convert_async(*, prompt[, input_type])

Converts English text to randomly chosen circle or square character emojis.

convert_tokens_async(*, prompt[, ...])

Converts substrings within a prompt that are enclosed by specified start and end tokens.

get_identifier()

input_supported(input_type)

Checks if the input type is supported by the converter

Attributes

async convert_async(*, prompt: str, input_type: Literal['text', 'image_path', 'audio_path', 'url', 'error'] = 'text') ConverterResult[source]#

Converts English text to randomly chosen circle or square character emojis.

Inspired by BASI-LABS/parseltongue

emoji_dict = {'a': ['🅐', '🅰️', '🄰'], 'b': ['🅑', '🅱️', '🄱'], 'c': ['🅒', '🅲', '🄲'], 'd': ['🅓', '🅳', '🄳'], 'e': ['🅔', '🅴', '🄴'], 'f': ['🅕', '🅵', '🄵'], 'g': ['🅖', '🅶', '🄶'], 'h': ['🅗', '🅷', '🄷'], 'i': ['🅘', '🅸', '🄸'], 'j': ['🅙', '🅹', '🄹'], 'k': ['🅚', '🅺', '🄺'], 'l': ['🅛', '🅻', '🄻'], 'm': ['🅜', '🅼', '🄼'], 'n': ['🅝', '🅽', '🄽'], 'o': ['🅞', '🅾️', '🄾'], 'p': ['🅟', '🅿️', '🄿'], 'q': ['🅠', '🆀', '🅀'], 'r': ['🅡', '🆁', '🅁'], 's': ['🅢', '🆂', '🅂'], 't': ['🅣', '🆃', '🅃'], 'u': ['🅤', '🆄', '🅄'], 'v': ['🅥', '🆅', '🅅'], 'w': ['🅦', '🆆', '🅆'], 'x': ['🅧', '🆇', '🅇'], 'y': ['🅨', '🆈', '🅈'], 'z': ['🅩', '🆉', '🅉']}#
input_supported(input_type: Literal['text', 'image_path', 'audio_path', 'url', 'error']) bool[source]#

Checks if the input type is supported by the converter

Parameters:

input_type – The input type to check

Returns:

True if the input type is supported, False otherwise

Return type:

bool