Source code for pyrit.prompt_converter.string_join_converter

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

from pyrit.models import PromptDataType
from pyrit.prompt_converter import PromptConverter, ConverterResult


[docs] class StringJoinConverter(PromptConverter):
[docs] def __init__(self, *, join_value="-"): self.join_value = join_value
[docs] async def convert_async(self, *, prompt: str, input_type: PromptDataType = "text") -> ConverterResult: """ 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 Args: prompt (str): The prompt to be converted. Returns: list[str]: The converted prompts. """ if not self.input_supported(input_type): raise ValueError("Input type not supported") return ConverterResult(output_text=self.join_value.join(prompt), output_type="text")
[docs] def input_supported(self, input_type: PromptDataType) -> bool: return input_type == "text"