How to use example selectors
This guide assumes familiarity with the following concepts:
If you have a large number of examples, you may need to select which ones to include in the prompt. The Example Selector is the class responsible for doing so.
The base interface is defined as below:
class BaseExampleSelector {
addExample(example: Example): Promise<void | string>;
selectExamples(input_variables: Example): Promise<Example[]>;
}
The only method it needs to define is a selectExamples
method. This
takes in the input variables and then returns a list of examples. It is
up to each specific implementation as to how those examples are
selected.
LangChain has a few different types of example selectors. For an overview of all these types, see the below table.
In this guide, we will walk through creating a custom example selector.
Examplesβ
In order to use an example selector, we need to create a list of examples. These should generally be example inputs and outputs. For this demo purpose, letβs imagine we are selecting examples of how to translate English to Italian.
const examples = [
{ input: "hi", output: "ciao" },
{ input: "bye", output: "arrivaderci" },
{ input: "soccer", output: "calcio" },
];
Custom Example Selectorβ
Letβs write an example selector that chooses what example to pick based on the length of the word.
import { BaseExampleSelector } from "@langchain/core/example_selectors";
import { Example } from "@langchain/core/prompts";
class CustomExampleSelector extends BaseExampleSelector {
private examples: Example[];
constructor(examples: Example[]) {
super();
this.examples = examples;
}
async addExample(example: Example): Promise<void | string> {
this.examples.push(example);
return;
}
async selectExamples(inputVariables: Example): Promise<Example[]> {
// This assumes knowledge that part of the input will be a 'text' key
const newWord = inputVariables.input;
const newWordLength = newWord.length;
// Initialize variables to store the best match and its length difference
let bestMatch: Example | null = null;
let smallestDiff = Infinity;
// Iterate through each example
for (const example of this.examples) {
// Calculate the length difference with the first word of the example
const currentDiff = Math.abs(example.input.length - newWordLength);
// Update the best match if the current one is closer in length
if (currentDiff < smallestDiff) {
smallestDiff = currentDiff;
bestMatch = example;
}
}
return bestMatch ? [bestMatch] : [];
}
}
const exampleSelector = new CustomExampleSelector(examples);
await exampleSelector.selectExamples({ input: "okay" });
[ { input: "bye", output: "arrivaderci" } ]
await exampleSelector.addExample({ input: "hand", output: "mano" });
await exampleSelector.selectExamples({ input: "okay" });
[ { input: "hand", output: "mano" } ]
Use in a Promptβ
We can now use this example selector in a prompt
import { PromptTemplate, FewShotPromptTemplate } from "@langchain/core/prompts";
const examplePrompt = PromptTemplate.fromTemplate(
"Input: {input} -> Output: {output}"
);
const prompt = new FewShotPromptTemplate({
exampleSelector,
examplePrompt,
suffix: "Input: {input} -> Output:",
prefix: "Translate the following words from English to Italain:",
inputVariables: ["input"],
});
console.log(await prompt.format({ input: "word" }));
Translate the following words from English to Italain:
Input: hand -> Output: mano
Input: word -> Output:
Example Selector Typesβ
Name | Description |
---|---|
Similarity | Uses semantic similarity between inputs and examples to decide which examples to choose. |
Length | Selects examples based on how many can fit within a certain length |
Next stepsβ
Youβve now learned a bit about using example selectors to few shot LLMs.
Next, check out some guides on some other techniques for selecting examples: