A community-theater playbill job embeds this week's show name in scattered string concatenations, and one file drops the no-ticket-prices rule. What should the code use?
Select an answer to reveal the explanation.
Short Explanation
The show name and the no-ticket-prices rule should live in one prompt-template object with slots the job fills. Scattered concatenations drop a rule. Fine-tuning whenever the title changes, or stuffing the title only in a cuDF column, is not a template.
Full Explanation
A prompt-template object in code holds the stable instructions and the slots the job fills, such as this week's show name. That centralizes the no-ticket-prices rule so one file cannot drop it. Scattered string concatenation drifts. Fine-tuning a model whenever the title changes, or storing the title only in a table, is not a template.