Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Commit ·
fc4f247
1
Parent(s): 2ca459e
adding the hf jobs tool to be exported
Browse files- agent/core/__init__.py +2 -1
agent/core/__init__.py
CHANGED
|
@@ -3,9 +3,10 @@ Core agent implementation
|
|
| 3 |
Contains the main agent logic, decision-making, and orchestration
|
| 4 |
"""
|
| 5 |
|
| 6 |
-
from agent.core.tools import ToolRouter, ToolSpec
|
| 7 |
|
| 8 |
__all__ = [
|
| 9 |
"ToolRouter",
|
| 10 |
"ToolSpec",
|
|
|
|
| 11 |
]
|
|
|
|
| 3 |
Contains the main agent logic, decision-making, and orchestration
|
| 4 |
"""
|
| 5 |
|
| 6 |
+
from agent.core.tools import ToolRouter, ToolSpec, create_builtin_tools
|
| 7 |
|
| 8 |
__all__ = [
|
| 9 |
"ToolRouter",
|
| 10 |
"ToolSpec",
|
| 11 |
+
"create_builtin_tools",
|
| 12 |
]
|