From 71db60fb7c117008e3c4cf38e7329fc8d543d702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Mon, 9 Jun 2025 16:42:56 +0200 Subject: [PATCH] Use the env. variable in replay MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- tools/replay.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/replay.py b/tools/replay.py index 70c1a880..88842e93 100644 --- a/tools/replay.py +++ b/tools/replay.py @@ -33,6 +33,9 @@ import time import argparse from typing import Dict, List, Tuple +# Disable session recording for replay tool +os.environ["CAI_DISABLE_SESSION_RECORDING"] = "true" + # Add the parent directory to the path to import cai modules sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))