6大核心模块(Modules)
示例
自定义示例选择器(Custom Example Selector)

LangChain

实现自定义示例选择器

在本教程中,我们将创建一个自定义示例选择器,该选择器从给定的示例列表中选择每个替代示例。

ExampleSelector必须实现两种方法:

  1. add_example方法,它接受一个示例并将其添加到该ExampleSelector中。
  2. select_examples方法,它接受输入变量(这些变量应为用户输入),并返回要在few-shot提示中使用的示例列表。

让我们实现一个自定义ExampleSelector,它仅随机选择两个示例。

注意

查看LangChain支持的当前示例选择器实现此处

实现自定义示例选择器

from langchain.prompts.example_selector.base import BaseExampleSelector
from typing import Dict, List
import numpy as np
 
class CustomExampleSelector(BaseExampleSelector):
 
    def __init__(self, examples: List[Dict[str, str]]):
        self.examples = examples
 
    def add_example(self, example: Dict[str, str]) -> None:
 """Add new example to store for a key."""
        self.examples.append(example)
 
    def select_examples(self, input_variables: Dict[str, str]) -> List[dict]:
 """Select which examples to use based on the inputs."""
        return np.random.choice(self.examples, size=2, replace=False)
 

Use custom example selector#

 
examples = [
    {"foo": "1"},
    {"foo": "2"},
    {"foo": "3"}
]
 
# Initialize example selector.
example_selector = CustomExampleSelector(examples)
 
# Select examples
example_selector.select_examples({"foo": "foo"})
# -> array([{'foo': '2'}, {'foo': '3'}], dtype=object)
 
# Add new example to the set of examples
example_selector.add_example({"foo": "4"})
example_selector.examples
# -> [{'foo': '1'}, {'foo': '2'}, {'foo': '3'}, {'foo': '4'}]
 
# Select examples
example_selector.select_examples({"foo": "foo"})
# -> array([{'foo': '1'}, {'foo': '4'}], dtype=object)