Source code for pyrit.prompt_converter.tense_converter
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import logging
import pathlib
from pyrit.common.path import DATASETS_PATH
from pyrit.models import SeedPrompt
from pyrit.prompt_converter import LLMGenericTextConverter
from pyrit.prompt_target import PromptChatTarget
logger = logging.getLogger(__name__)
[docs]
class TenseConverter(LLMGenericTextConverter):
[docs]
def __init__(self, *, converter_target: PromptChatTarget, tense: str, prompt_template: SeedPrompt = None):
"""
Converts a conversation to a different tense
Args:
converter_target (PromptChatTarget): The target chat support for the conversion which will translate
tone (str): The tense the converter should convert the prompt to. E.g. past, present, future.
prompt_template (SeedPrompt, Optional): The prompt template for the conversion.
Raises:
ValueError: If the language is not provided.
"""
# set to default strategy if not provided
prompt_template = (
prompt_template
if prompt_template
else SeedPrompt.from_yaml_file(pathlib.Path(DATASETS_PATH) / "prompt_converters" / "tense_converter.yaml")
)
super().__init__(
converter_target=converter_target,
prompt_template=prompt_template,
tense=tense,
)