From 9e471aa04236f84cb350ef288cf848ebdbe758b3 Mon Sep 17 00:00:00 2001 From: Shahules786 Date: Thu, 12 Dec 2024 17:26:45 +0530 Subject: [PATCH] add note --- docs/howtos/customizations/metrics/train_your_own_metric.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/howtos/customizations/metrics/train_your_own_metric.md b/docs/howtos/customizations/metrics/train_your_own_metric.md index 6bdc16608..3f11f4799 100644 --- a/docs/howtos/customizations/metrics/train_your_own_metric.md +++ b/docs/howtos/customizations/metrics/train_your_own_metric.md @@ -98,7 +98,9 @@ os.environ['RAGAS_APP_TOKEN'] = 'your_app_token' ``` Once that's done, you can upload the evaluation results to app.ragas using the following code. - +!!! note + Please ensure that you're in ragas 0.2.8 or above to use this feature. + ```python results.upload() ```