πŸ“„ StandardΒΆ

templates.completion.abstractive.standard

InputOutputTemplate(
    instruction="Write the best {completion_type} to the {context_type}.",
    input_format="{context}",
    output_format="{completion}",
)
[source]

Explanation about InputOutputTemplateΒΆ

Generate field β€˜source’ from fields designated as input, and fields β€˜target’ and β€˜references’ from fields designated as output, of the processed instance.

Args specify the formatting strings with which to glue together the input and reference fields of the processed instance into one string (β€˜source’ and β€˜target’), and into a list of strings (β€˜references’).

Read more about catalog usage here.