From b616f2d79ee54411bd1f95b0fbfb6e72286485ac Mon Sep 17 00:00:00 2001 From: meshkatshb Date: Wed, 22 Jan 2025 12:25:11 +0330 Subject: [PATCH] hotfix: trace path was being shown as recording path --- webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 579a09f..2e3570b 100644 --- a/webui.py +++ b/webui.py @@ -754,7 +754,7 @@ def create_ui(config, theme_name="Ocean"): save_trace_path = gr.Textbox( label="Trace Path", placeholder="e.g. ./tmp/traces", - value=config['save_recording_path'], + value=config['save_trace_path'], info="Path to save Agent traces", interactive=True, )