What is the general technique of providing examples within a prompt called?	One-shot or multi-shot prompting.
How is "one-shot prompting" defined?	Providing a single example in the prompt.
How is "multi-shot prompting" defined?	Providing multiple examples in the prompt.
What is one primary use for using multi-shot prompting?	To help the model handle corner cases, such as sarcasm.
Besides handling corner cases, what is another key use for providing examples?	To help the model understand and generate complex output formats (e.g., JSON).
What structural method is recommended for inputs and outputs when providing examples in a prompt?	Wrapping them inside XML tags.
When adding examples for corner cases, what advice is given regarding context?	Add context and explicitly tell the model to be aware of certain scenarios (e.g., sarcasm).
What is an optional but highly beneficial step when providing an ideal output example?	Including the reasoning or explanation for why that output is considered ideal.
Where can a user find a high-scoring example to use in their prompt engineering?	In the HTML file generated during prompt evaluation (the notebook framework).
