in neuron-explainer/neuron_explainer/explanations/few_shot_examples.py [0:0]
def get_examples(self) -> list[Example]:
"""Returns regular examples for use in a few-shot prompt."""
if self is FewShotExampleSet.ORIGINAL:
return ORIGINAL_EXAMPLES
elif self is FewShotExampleSet.NEWER:
return NEWER_EXAMPLES
elif self is FewShotExampleSet.TEST:
return TEST_EXAMPLES
else:
raise ValueError(f"Unhandled example set: {self}")