Evals
Evals are LLM-powered functions that you can use to evaluate the output of your LLM or generative application
phoenix.evals.run_evals
Evaluates a pandas dataframe using a set of user-specified evaluators that assess each row for relevance of retrieved documents, hallucinations, toxicity, etc. Outputs a list of dataframes, one for each evaluator, that contain the labels, scores, and optional explanations from the corresponding evaluator applied to the input dataframe.
Parameters
dataframe (pandas.DataFrame): A pandas dataframe in which each row represents an individual record to be evaluated. Each evaluator uses an LLM and an evaluation prompt template to assess the rows of the dataframe, and those template variables must appear as column names in the dataframe.
evaluators (List[LLMEvaluator]): A list of evaluators to apply to the input dataframe. Each evaluator class accepts a model as input, which is used in conjunction with an evaluation prompt template to evaluate the rows of the input dataframe and to output labels, scores, and optional explanations. Currently supported evaluators include:
HallucinationEvaluator: Evaluates whether a response (stored under an "output" column) is a hallucination given a query (stored under an "input" column) and one or more retrieved documents (stored under a "reference" column).
RelevanceEvaluator: Evaluates whether a retrieved document (stored under a "reference" column) is relevant or irrelevant to the corresponding query (stored under an "input" column).
ToxicityEvaluator: Evaluates whether a string (stored under an "input" column) contains racist, sexist, chauvinistic, biased, or otherwise toxic content.
QAEvaluator: Evaluates whether a response (stored under an "output" column) is correct or incorrect given a query (stored under an "input" column) and one or more retrieved documents (stored under a "reference" column).
SummarizationEvaluator: Evaluates whether a summary (stored under an "output" column) provides an accurate synopsis of an input document (stored under an "input" column).
SQLEvaluator: Evaluates whether a generated SQL query (stored under the "query_gen" column) and a response (stored under the "response" column) appropriately answer a question (stored under the "question" column).
provide_explanation (bool, optional): If true, each output dataframe will contain an explanation column containing the LLM's reasoning for each evaluation.
use_function_calling_if_available (bool, optional): If true, function calling is used (if available) as a means to constrain the LLM outputs. With function calling, the LLM is instructed to provide its response as a structured JSON object, which is easier to parse.
verbose (bool, optional): If true, prints detailed information such as model invocation parameters, retries on failed requests, etc.
concurrency (int, optional): The number of concurrent workers if async submission is possible. If not provided, a recommended default concurrency is set on a per-model basis.
Returns
List[pandas.DataFrame]: A list of dataframes, one for each evaluator, all of which have the same number of rows as the input dataframe.
Usage
To use run_evals
, you must first wrangle your LLM application data into a pandas dataframe either manually or by querying and exporting the spans collected by your Phoenix session. Once your dataframe is wrangled into the appropriate format, you can instantiate your evaluators by passing the model to be used during evaluation.
This example uses OpenAIModel
, but you can use any of our supported evaluation models.
Run your evaluations by passing your dataframe
and your list of desired evaluators.
Assuming your dataframe
contains the "input", "reference", and "output" columns required by HallucinationEvaluator
and QAEvaluator
, your output dataframes should contain the results of the corresponding evaluator applied to the input dataframe, including columns for labels (e.g., "factual" or "hallucinated"), scores (e.g., 0 for factual labels, 1 for hallucinated labels), and explanations. If your dataframe was exported from your Phoenix session, you can then ingest the evaluations using phoenix.log_evaluations
so that the evals will be visible as annotations inside Phoenix.
For an end-to-end example, see the evals quickstart.
phoenix.evals.PromptTemplate
Class used to store and format prompt templates.
Parameters
text (str): The raw prompt text used as a template.
delimiters (List[str]): List of characters used to locate the variables within the prompt template
text
. Defaults to["{", "}"]
.
Attributes
text (str): The raw prompt text used as a template.
variables (List[str]): The names of the variables that, once their values are substituted into the template, create the prompt text. These variable names are automatically detected from the template
text
using thedelimiters
passed when initializing the class (see Usage section below).
Usage
Define a PromptTemplate
by passing a text
string and the delimiters
to use to locate the variables
. The default delimiters are {
and }
.
If the prompt template variables have been correctly located, you can access them as follows:
The PromptTemplate
class can also understand any combination of delimiters. Following the example above, but getting creative with our delimiters:
Once you have a PromptTemplate
class instantiated, you can make use of its format
method to construct the prompt text resulting from substituting values into the variables
. To do so, a dictionary mapping the variable names to the values is passed:
Note that once you initialize the PromptTemplate
class, you don't need to worry about delimiters anymore, it will be handled for you.
phoenix.evals.llm_classify
Classifies each input row of the dataframe
using an LLM. Returns a pandas.DataFrame
where the first column is named label
and contains the classification labels. An optional column named explanation
is added when provide_explanation=True
.
Parameters
dataframe (pandas.DataFrame): A pandas dataframe in which each row represents a record to be classified. All template variable names must appear as column names in the dataframe (extra columns unrelated to the template are permitted).
template (ClassificationTemplate, or str): The prompt template as either an instance of PromptTemplate or a string. If the latter, the variable names should be surrounded by curly braces so that a call to
.format
can be made to substitute variable values.model (BaseEvalModel): An LLM model class instance
rails (List[str]): A list of strings representing the possible output classes of the model's predictions.
system_instruction (Optional[str]): An optional system message for modals that support it
verbose (bool, optional): If
True
, prints detailed info to stdout such as model invocation parameters and details about retries and snapping to rails. DefaultFalse
.use_function_calling_if_available (bool, default=True): If
True
, use function calling (if available) as a means to constrain the LLM outputs. With function calling, the LLM is instructed to provide its response as a structured JSON object, which is easier to parse.provide_explanation (bool, default=False): If
True
, provides an explanation for each classification label. A column namedexplanation
is added to the output dataframe. Note that this will default to using function calling if available. If the model supplied does not support function calling,llm_classify
will need a prompt template that prompts for an explanation. For phoenix's pre-tested eval templates, the template is swapped out for a chain-of-thought based template that prompts for an explanation.
Returns
pandas.DataFrame: A dataframe where the
label
column (at column position 0) contains the classification labels. Ifprovide_explanation=True
, then an additional column namedexplanation
is added to contain the explanation for each label. The dataframe has the same length and index as the input dataframe. The classification label values are from the entries in the rails argument or "NOT_PARSABLE" if the model's output could not be parsed.
phoenix.evals.llm_generate
Generates a text using a template using an LLM. This function is useful if you want to generate synthetic data, such as irrelevant responses
Parameters
dataframe (pandas.DataFrame): A pandas dataframe in which each row represents a record to be used as in input to the template. All template variable names must appear as column names in the dataframe (extra columns unrelated to the template are permitted).
template (Union[PromptTemplate, str]): The prompt template as either an instance of PromptTemplate or a string. If the latter, the variable names should be surrounded by curly braces so that a call to
format
can be made to substitute variable values.model (BaseEvalModel): An LLM model class.
system_instruction (Optional[str], optional): An optional system message.
output_parser (Callable[[str, int], Dict[str, Any]], optional): An optional function that takes each generated response and response index and parses it to a dictionary. The keys of the dictionary should correspond to the column names of the output dataframe. If None, the output dataframe will have a single column named "output". Default None.
Returns
generations_dataframe (pandas.DataFrame): A dataframe where each row represents the generated output
Usage
Below we show how you can use llm_generate
to use an llm to generate synthetic data. In this example, we use the llm_generate
function to generate the capitals of countries but llm_generate
can be used to generate any type of data such as synthetic questions, irrelevant responses, and so on.
llm_generate
also supports an output parser so you can use this to generate data in a structured format. For example, if you want to generate data in JSON format, you ca prompt for a JSON object and then parse the output using the json
library.
Last updated