pyrit.prompt_converter.SuffixAppendConverter#

class SuffixAppendConverter(*, suffix: str)[source]#

Bases: PromptConverter

__init__(*, suffix: str)[source]#

Methods

__init__(*, suffix)

convert_async(*, prompt[, input_type])

Simple converter that appends a given suffix to the prompt.

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 appends a given suffix to the prompt. E.g. with a suffix !!!, it converts a prompt of test to test !!!

See PyRIT/pyrit/auxiliary_attacks/gcg for adversarial suffix generation

Parameters:

prompt (str) – The prompt to be converted.

Returns:

The converted prompts.

Return type:

list[str]

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