Source code for pyrit.prompt_converter.ascii_art_converter

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

from art import text2art

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


[docs] class AsciiArtConverter(PromptConverter): """ Uses the `art` package to convert text into ASCII art. """ SUPPORTED_INPUT_TYPES = ("text",) SUPPORTED_OUTPUT_TYPES = ("text",)
[docs] def __init__(self, font: str = "rand") -> None: """ Initialize the converter with a specified font. Args: font (str): The font to use for ASCII art. Defaults to "rand" which selects a random font. """ self._font = font
def _build_identifier(self) -> ConverterIdentifier: """ Build the converter identifier with font parameter. Returns: ConverterIdentifier: The identifier for this converter. """ return self._create_identifier( converter_specific_params={ "font": self._font, }, )
[docs] async def convert_async(self, *, prompt: str, input_type: PromptDataType = "text") -> ConverterResult: """ Convert the given prompt into ASCII art. Args: prompt (str): The prompt to be converted. input_type (PromptDataType): The type of input data. Returns: ConverterResult: The result containing the ASCII art representation of the prompt. Raises: ValueError: If the input type is not supported. """ if not self.input_supported(input_type): raise ValueError("Input type not supported") return ConverterResult(output_text=text2art(prompt, font=self._font), output_type="text")