From 9daf84f65529fb0bcc6ccc916a979c10b9fd9902 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Fri, 25 Jul 2025 15:00:54 +0200 Subject: [PATCH] More clarifications --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06a8b1be5..c7625286c 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ VCR_RECORD=1 PARALLEL_WORKERS=2 bin/rails test A typical scenario is making modifications LLM prompts. You need to: 1. Make the prompt changes. -2. Run the test with `VCR_RECORD=1` set. +2. Run the test with `VCR_RECORD=1` set. This will let the test make the actual network requests and record the responses as VCR fixtures. 3. Make sure that the test passes by running the test normally (without setting VCR_RECORD=1). 4. Commit the YML fixtures that VCR has generated. That way, the next time you run the test, it will run fast without performing any request.