Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/docs/metrics-turn-relevancy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ import MetricTagsDisplayer from '@site/src/components/MetricTagsDisplayer';
rag={true}
/>

:::note Migration from v3.6.x
If you're upgrading from DeepEval v3.6.x or earlier, note that `ConversationRelevancyMetric` has been renamed to `TurnRelevancyMetric`. Simply update your imports:

```python
# Before (v3.6.x and earlier)
from deepeval.metrics import ConversationRelevancyMetric

# After (v3.7.x+)
from deepeval.metrics import TurnRelevancyMetric
```

The API and functionality remain the same.
:::

The turn relevancy metric is a conversational metric that determines whether your LLM chatbot is able to consistently generate relevant responses **throughout a conversation**.

## Required Arguments
Expand Down
Loading