TextGeneration¶
Simple text generation with an LLM
given an instruction.
TextGeneration
is a pre-defined task that defines the instruction
as the input
and generation
as the output. This task is used to generate text based on the input
instruction. The model_name is also returned as part of the output in order to enhance it.
Attributes¶
- use_system_prompt: Whether to use the system prompt in the generation. Defaults to
True
, which means that if the columnsystem_prompt
is defined within the input batch, then thesystem_prompt
will be used, otherwise, it will be ignored.
Input & Output Columns¶
Inputs¶
- instruction (
str
): The instruction to generate text from.
Outputs¶
-
generation (
str
): The generated text. -
model_name (
str
): The model name used to generate the text.