mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-16 12:12:56 -06:00
chore: Adds toolbox-core to deps and fixes toolbox code error.
PiperOrigin-RevId: 759802478
This commit is contained in:
parent
93e8f020ed
commit
03f167c1d3
@ -45,6 +45,7 @@ dependencies = [
|
|||||||
"sqlalchemy>=2.0", # SQL database ORM
|
"sqlalchemy>=2.0", # SQL database ORM
|
||||||
"tzlocal>=5.3", # Time zone utilities
|
"tzlocal>=5.3", # Time zone utilities
|
||||||
"uvicorn>=0.34.0", # ASGI server for FastAPI
|
"uvicorn>=0.34.0", # ASGI server for FastAPI
|
||||||
|
"toolbox-core>=0.1.0",
|
||||||
# go/keep-sorted end
|
# go/keep-sorted end
|
||||||
]
|
]
|
||||||
dynamic = ["version"]
|
dynamic = ["version"]
|
||||||
|
@ -12,9 +12,11 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from typing import List, Optional, override
|
from typing import List
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
import toolbox_core as toolbox
|
import toolbox_core as toolbox
|
||||||
|
from typing_extensions import override
|
||||||
|
|
||||||
from ..agents.readonly_context import ReadonlyContext
|
from ..agents.readonly_context import ReadonlyContext
|
||||||
from .base_tool import BaseTool
|
from .base_tool import BaseTool
|
||||||
|
Loading…
Reference in New Issue
Block a user