Skip to content

ConversationTemplate

Generate a conversation template from an instruction and a response.

Input & Output Columns

Inputs

  • instruction (str): The instruction to be used in the conversation.

  • response (str): The response to be used in the conversation.

Outputs

  • conversation (ChatType): The conversation template.

Examples

Create a conversation from an instruction and a response

from distilabel.steps import ConversationTemplate

conv_template = ConversationTemplate()
conv_template.load()

result = next(
    conv_template.process(
        [
            {
                "instruction": "Hello",
                "response": "Hi",
            }
        ],
    )
)
# >>> result
# [{'instruction': 'Hello', 'response': 'Hi', 'conversation': [{'role': 'user', 'content': 'Hello'}, {'role': 'assistant', 'content': 'Hi'}]}]
Was this page helpful?