Conversation Completeness
The Conversation Completeness metric is one of several non-deterministic Metric Types Galtea uses to measure the ability of your LLM-based chatbot to guide a user through an end-to-end conversation that successfully satisfies their initial request or goal. It evaluates whether the dialogue includes all necessary steps and logical transitions needed to fulfill the user’s intent. This metric is especially relevant for transactional or task-based agents (e.g., booking systems, support bots).To compute the
conversation_completeness
metric, the following parameters are required in every turn of the conversation:
input
: The user message in the session.actual_output
: The chatbot’s response to the user message.
How Is It Calculated?
Theconversation_completeness
score is computed using the following LLM-driven process:
- Goal Inference: An LLM infers the user’s original goal or task from the early stages of the conversation history.
- Completion Check: The LLM determines whether the chatbot has successfully satisfied that goal by the end of the conversation.
This metric was incorporated to the Galtea platform from the open source library deepeval, for more information you can also visit their documentation.