Conversation Completeness
The conversation completeness metric is a conversational metric that determines whether your LLM chatbot is able to complete an end-to-end conversation by satisfying user needs throughout a conversation.
The ConversationCompletenessMetric
can be used as a proxy to measure user satisfaction throughout a conversation. Conversational metrics are particular useful for an LLM chatbot use case.
Required Arguments
To use the ConversationCompletenessMetric
, you'll have to provide the following arguments when creating an ConversationalTestCase
:
turns
Additionally, each LLMTestCase
s in turns
requires the following arguments:
input
actual_output
Example
Let's take this conversation as an example:
from deepeval.test_case import LLMTestCase, ConversationalTestCase
from deepeval.metrics import ConversationCompletenessMetric
convo_test_case = ConversationalTestCase(
turns=[LLMTestCase(input="...", actual_output="...")]
)
metric = ConversationCompletenessMetric(threshold=0.5)
metric.measure(convo_test_case)
print(metric.score)
print(metric.reason)
There are six optional parameters when creating a ConversationCompletenessMetric
:
- [Optional]
threshold
: a float representing the minimum passing threshold, defaulted to 0.5. - [Optional]
model
: a string specifying which of OpenAI's GPT models to use, OR any custom LLM model of typeDeepEvalBaseLLM
. Defaulted to 'gpt-4o'. - [Optional]
include_reason
: a boolean which when set toTrue
, will include a reason for its evaluation score. Defaulted toTrue
. - [Optional]
strict_mode
: a boolean which when set toTrue
, enforces a binary metric score: 1 for perfection, 0 otherwise. It also overrides the current threshold and sets it to 1. Defaulted toFalse
. - [Optional]
async_mode
: a boolean which when set toTrue
, enables concurrent execution within themeasure()
method. Defaulted toTrue
. - [Optional]
verbose_mode
: a boolean which when set toTrue
, prints the intermediate steps used to calculate said metric to the console, as outlined in the How Is It Calculated section. Defaulted toFalse
.
How Is It Calculated?
The ConversationCompletenessMetric
score is calculated according to the following equation:
The ConversationCompletenessMetric
assumes that a conversion is only complete if user intentions, such as asking for help to an LLM chatbot, are met by the LLM chatbot. Hence, the ConversationCompletenessMetric
first uses an LLM to extract a list of high level user intentions found in the list of turns
, before using the same LLM to determine whether each intention was met and/or satisfied throughout the conversation.