From fe0a927507ac78b7ef8900e4ce8b41a7af459de1 Mon Sep 17 00:00:00 2001 From: Tunde Agboola Date: Wed, 8 May 2024 14:11:52 -0400 Subject: [PATCH] Add note that evaluator and vertexai packaes must be installed --- docs/evaluation.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/evaluation.md b/docs/evaluation.md index 2f3f09f7f..82b61f09c 100644 --- a/docs/evaluation.md +++ b/docs/evaluation.md @@ -25,6 +25,12 @@ export default configureGenkit({ }); ``` +Note: The configuration above requires installing the `@genkit-ai/evaluator` and `@genkit-ai/vertexai` packages. + +```posix-terminal + npm install @genkit-ai/evaluator @genkit-ai/vertexai +``` + Start by defining a set of inputs that you want to use as an input dataset called `testQuestions.json`. This input dataset represents the test cases you will use to generate output for evaluation. ```json