From b802e0bc447d82e96c8d3a066f66363d1f2c87d6 Mon Sep 17 00:00:00 2001 From: dyabel Date: Tue, 27 Feb 2024 06:48:30 +0000 Subject: [PATCH] 1 --- README.md | 2 +- extract_tool_database.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e3256e..9c02b84 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ We provide sample data in anytoolbench.json file. # 🚗 Run AnyTool -Fill your OpenAI config and toolbench key into the config.py. +Fill your OpenAI config and toolbench key into the config.py (see config_example.py). Run ToolBench ``` diff --git a/extract_tool_database.py b/extract_tool_database.py index 79c392e..512291a 100644 --- a/extract_tool_database.py +++ b/extract_tool_database.py @@ -10,7 +10,7 @@ def extract_tool_data(): if root.split('/')[-1] not in tool_data: tool_data[root.split('/')[-1]] = {} with open(os.path.join(root, file), "r") as f: - # print(root, file) + print(root, file) data = json.load(f) try: tool_name = data["tool_name"] if "tool_name" in data else data["name"]