Spaces:
Running
Running
Commit ·
0d853ec
1
Parent(s): 9d53405
fix
Browse files- agent/tools/__init__.py +4 -8
agent/tools/__init__.py
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
Hugging Face tools for the agent
|
| 3 |
"""
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
from agent.tools.github_find_examples import (
|
| 6 |
GITHUB_FIND_EXAMPLES_TOOL_SPEC,
|
| 7 |
github_find_examples_handler,
|
|
@@ -14,14 +18,6 @@ from agent.tools.github_read_file import (
|
|
| 14 |
GITHUB_READ_FILE_TOOL_SPEC,
|
| 15 |
github_read_file_handler,
|
| 16 |
)
|
| 17 |
-
from agent.tools.github_search_code import (
|
| 18 |
-
GITHUB_SEARCH_CODE_TOOL_SPEC,
|
| 19 |
-
github_search_code_handler,
|
| 20 |
-
)
|
| 21 |
-
from agent.tools.dataset_tools import (
|
| 22 |
-
HF_INSPECT_DATASET_TOOL_SPEC,
|
| 23 |
-
hf_inspect_dataset_handler,
|
| 24 |
-
)
|
| 25 |
from agent.tools.jobs_tool import HF_JOBS_TOOL_SPEC, HfJobsTool, hf_jobs_handler
|
| 26 |
from agent.tools.types import ToolResult
|
| 27 |
|
|
|
|
| 2 |
Hugging Face tools for the agent
|
| 3 |
"""
|
| 4 |
|
| 5 |
+
from agent.tools.dataset_tools import (
|
| 6 |
+
HF_INSPECT_DATASET_TOOL_SPEC,
|
| 7 |
+
hf_inspect_dataset_handler,
|
| 8 |
+
)
|
| 9 |
from agent.tools.github_find_examples import (
|
| 10 |
GITHUB_FIND_EXAMPLES_TOOL_SPEC,
|
| 11 |
github_find_examples_handler,
|
|
|
|
| 18 |
GITHUB_READ_FILE_TOOL_SPEC,
|
| 19 |
github_read_file_handler,
|
| 20 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
from agent.tools.jobs_tool import HF_JOBS_TOOL_SPEC, HfJobsTool, hf_jobs_handler
|
| 22 |
from agent.tools.types import ToolResult
|
| 23 |
|