chore: Adds toolbox-core to deps and fixes toolbox code error.

PiperOrigin-RevId: 759802478
This commit is contained in:
Wei Sun (Jack) 2025-05-16 16:45:36 -07:00 committed by Copybara-Service
parent 93e8f020ed
commit 03f167c1d3
2 changed files with 4 additions and 1 deletions

View File

@ -45,6 +45,7 @@ dependencies = [
"sqlalchemy>=2.0", # SQL database ORM
"tzlocal>=5.3", # Time zone utilities
"uvicorn>=0.34.0", # ASGI server for FastAPI
"toolbox-core>=0.1.0",
# go/keep-sorted end
]
dynamic = ["version"]

View File

@ -12,9 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import List, Optional, override
from typing import List
from typing import Optional
import toolbox_core as toolbox
from typing_extensions import override
from ..agents.readonly_context import ReadonlyContext
from .base_tool import BaseTool