pyrit.prompt_converter.UnicodeSubstitutionConverter#

class UnicodeSubstitutionConverter(*, start_value=917504)[source]#

Bases: PromptConverter

__init__(*, start_value=917504)[source]#

Methods

__init__(*[, start_value])

convert_async(*, prompt[, input_type])

Simple converter that just encodes the prompt using any unicode starting point.

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

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

Simple converter that just encodes the prompt using any unicode starting point. Default is to use invisible flag emoji characters.

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