ConversationSplitters Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Built-in conversation splitters for common evaluation patterns.
public static class ConversationSplitters
type ConversationSplitters = class
Public Class ConversationSplitters
- Inheritance
-
ConversationSplitters
Remarks
- LastTurn: Evaluates whether the agent answered the latest question well.
- Full: Evaluates whether the whole conversation trajectory served the original request.
Properties
| Name | Description |
|---|---|
| Full |
The first user message (and any preceding system messages) is the query; the entire remainder of the conversation is the response. Evaluates overall conversation trajectory. |
| LastTurn |
Split at the last user message. Everything up to and including that message is the query; everything after is the response. This is the default strategy. |