in pyrit/orchestrator/single_turn/question_answer_benchmark_orchestrator.py [0:0]
def _set_default_conversation_start(self):
"""
Sets the default conversation start for the orchestrator.
"""
prepended_conversation = [
PromptRequestResponse(
request_pieces=[
PromptRequestPiece(
role="user",
original_value=self._user_start_turn.value,
)
]
),
PromptRequestResponse(
request_pieces=[
PromptRequestPiece(
role="assistant",
original_value=self._assistant_start_turn.value,
)
]
),
]
self.set_prepended_conversation(prepended_conversation=prepended_conversation)