pyrit.prompt_converter.SearchReplaceConverter#
- class SearchReplaceConverter(old_value: str, new_value: str)[source]#
Bases:
PromptConverter
Converts a string by replacing chosen phrase with a new phrase of choice
- Parameters:
Methods
__init__
(old_value, new_value)convert_async
(*, prompt[, input_type])Simple converter that just replaces character in string with a chosen new character
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 replaces character in string with a chosen new character
- Parameters:
prompt (str) – prompt to convert
input_type (PromptDataType) – type of input
Returns: converted text as a ConverterResult object