pyrit.prompt_converter.StringJoinConverter#

class StringJoinConverter(*, join_value='-')[source]#

Bases: PromptConverter

__init__(*, join_value='-')[source]#

Methods

__init__(*[, join_value])

convert_async(*, prompt[, input_type])

Simple converter that uses str join for letters between.

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 uses str join for letters between. E.g. with a - it converts a prompt of test to t-e-s-t

This can sometimes bypass LLM logic

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