Eino: ChatTemplate 使用说明
基本介绍
Prompt 组件是一个用于处理和格式化提示模板的组件。它的主要作用是将用户提供的变量值填充到预定义的消息模板中,生成用于与语言模型交互的标准消息格式。这个组件可用于以下场景:
- 构建结构化的系统提示
- 处理多轮对话的模板 (包括 history)
- 实现可复用的提示模式
组件定义
接口定义
type ChatTemplate interface {
Format(ctx context.Context, vs map[string]any, opts ...Option) ([]*schema.Message, error)
}
Format 方法
-
功能:将变量值填充到消息模板中
-
参数:
- ctx:上下文对象,用于传递请求级别的信息,同时也用于传递 Callback Manager
- vs:变量值映射,用于填充模板中的占位符
- opts:可选参数,用于配置格式化行为
-
返回值:
[]*schema.Message
:格式化后的消息列表- error:格式化过程中的错误信息
内置模板化方式
Prompt 组件内置支持三种模板化方式:
-
String 格式 (schema.FString)
- 使用
{variable}
语法进行变量替换 - 简单直观,适合基础文本替换场景
- 示例:
"你是一个{role},请帮我{task}。"
- 使用
-
Template 格式 (schema.FTemplate)
- 使用 Go 标准库的 text/template 语法
- 支持条件判断、循环等复杂逻辑
- 示例:
"{{if .expert}}作为专家{{end}}请{{.action}}"
-
Jinja2 格式 (schema.FJinja2)
- 使用 Jinja2 模板语法
- 支持丰富的过滤器和控制结构
- 示例:
"{% if level == 'expert' %}以专家的角度{% endif %}分析{{topic}}"
公共 Option
Prompt 组件使用 Option 来定义可选参数, ChatTemplate 没有公共的 option 抽象。每个具体的实现可以定义自己的特定 Option,通过 WrapImplSpecificOptFn 函数包装成统一的 Option 类型。
使用方式
ChatTemplate 一般用于 ChatModel 之前做上下文准备的。
单独使用
// 创建模板
template := prompt.FromMessages(schema.FString,
&schema.Message{
Role: schema.System,
Content: "你是一个{role}。",
},
&schema.Message{
Role: schema.User,
Content: "请帮我{task}。",
},
)
// 准备变量
variables := map[string]any{
"role": "专业的助手",
"task": "写一首诗",
}
// 格式化模板
messages, err := template.Format(ctx, variables)
if err != nil {
return err
}
在编排中使用
// 在 Chain 中使用
chain := compose.NewChain[map[string]any, []*schema.Message]()
chain.AppendChatTemplate(template)
// 编译并运行
runnable, err := chain.Compile()
if err != nil {
return err
}
result, err := runnable.Invoke(ctx, variables)
// 在 Graph 中使用
graph := compose.NewGraph[map[string]any, []*schema.Message]()
graph.AddChatTemplateNode("template_node", template)
Option 和 Callback 使用
Callback 使用示例
// 创建 callback handler
handler := &prompt.CallbackHandler{
OnStart: func(ctx context.Context, info *callbacks.RunInfo, input *prompt.CallbackInput) context.Context {
fmt.Printf("开始格式化模板,变量: %v\n", input.Variables)
return ctx
},
OnEnd: func(ctx context.Context, info *callbacks.RunInfo, output *prompt.CallbackOutput) context.Context {
fmt.Printf("模板格式化完成,生成消息数量: %d\n", len(output.Result))
return ctx
},
}
// 使用 callback handler
helper := template.NewHandlerHelper().
Prompt(handler).
Handler()
// 在运行时使用
runnable, err := chain.Compile()
if err != nil {
return err
}
result, err := runnable.Invoke(ctx, variables, compose.WithCallbacks(helper))
自行实现参考
Option 机制
若有需要,组件实现者可实现自定义 prompt option:
// 定义 Option 结构体
type MyPromptOptions struct {
StrictMode bool
DefaultValues map[string]string
}
// 定义 Option 函数
func WithStrictMode(strict bool) prompt.Option {
return prompt.WrapImplSpecificOptFn(func(o *MyPromptOptions) {
o.StrictMode = strict
})
}
func WithDefaultValues(values map[string]string) prompt.Option {
return prompt.WrapImplSpecificOptFn(func(o *MyPromptOptions) {
o.DefaultValues = values
})
}
Callback 处理
Prompt 实现需要在适当的时机触发回调,以下结构是组件定义好的:
// 定义回调输入输出
type CallbackInput struct {
Variables map[string]any
Templates []schema.MessagesTemplate
Extra map[string]any
}
type CallbackOutput struct {
Result []*schema.Message
Templates []schema.MessagesTemplate
Extra map[string]any
}
完整实现示例
type MyPrompt struct {
templates []schema.MessagesTemplate
formatType schema.FormatType
strictMode bool
defaultValues map[string]string
}
func NewMyPrompt(config *MyPromptConfig) (*MyPrompt, error) {
return &MyPrompt{
templates: config.Templates,
formatType: config.FormatType,
strictMode: config.DefaultStrictMode,
defaultValues: config.DefaultValues,
}, nil
}
func (p *MyPrompt) Format(ctx context.Context, vs map[string]any, opts ...prompt.Option) ([]*schema.Message, error) {
// 1. 处理 Option
options := &MyPromptOptions{
StrictMode: p.strictMode,
DefaultValues: p.defaultValues,
}
options = prompt.GetImplSpecificOptions(options, opts...)
// 2. 获取 callback manager
cm := callbacks.ManagerFromContext(ctx)
// 3. 开始格式化前的回调
ctx = cm.OnStart(ctx, info, &prompt.CallbackInput{
Variables: vs,
Templates: p.templates,
})
// 4. 执行格式化逻辑
messages, err := p.doFormat(ctx, vs, options)
// 5. 处理错误和完成回调
if err != nil {
ctx = cm.OnError(ctx, info, err)
return nil, err
}
ctx = cm.OnEnd(ctx, info, &prompt.CallbackOutput{
Result: messages,
Templates: p.templates,
})
return messages, nil
}
func (p *MyPrompt) doFormat(ctx context.Context, vs map[string]any, opts *MyPromptOptions) ([]*schema.Message, error) {
// 实现自己定义逻辑
return messages, nil
}
最后修改
January 9, 2025
: feat: add eino cn docs (#1182) (ad75444)