From 5f33489857fdb6054e4997e26ea346d103bc192a Mon Sep 17 00:00:00 2001 From: "caozouying.czy" Date: Wed, 26 Nov 2025 14:42:54 +0800 Subject: [PATCH] update: bfcl cookbook --- cookbook/bfcl/init_task_memory_pool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/bfcl/init_task_memory_pool.py b/cookbook/bfcl/init_task_memory_pool.py index 01896fe2..2a298407 100644 --- a/cookbook/bfcl/init_task_memory_pool.py +++ b/cookbook/bfcl/init_task_memory_pool.py @@ -218,7 +218,7 @@ if __name__ == "__main__": main() else: print("Running in compatibility mode...") - with open("exp_result/qwen3-14b/no_think/bfcl-multi-turn-base_wo-exp.jsonl", "r") as f: + with open("exp_result/qwen3-8b/no_think/bfcl-multi-turn-base_wo-exp.jsonl", "r") as f: data = [json.loads(line) for line in f] grouped_trajectories = group_trajectories_by_task_id(data) @@ -227,7 +227,7 @@ if __name__ == "__main__": results = process_trajectories_with_threads( grouped_trajectories, "http://localhost:8001", - "bfcl_test", + "bfcl_v3", n_threads=4, ) print(f"Processed {len(results)} groups")