[AUR-363, AUR-433, AUR-434] Add Base Tool interface with Wikipedia/Google tools (#30)

* add base Tool

* minor update test_tool

* update test dependency

* update test dependency

* Fix namespace conflict

* update test

---------

Co-authored-by: trducng <trungduc1992@gmail.com>
This commit is contained in:
Tuan Anh Nguyen Dang (Tadashi_Cin)
2023-09-29 10:18:49 +07:00
committed by GitHub
parent 317323c0e5
commit f9fc02a32a
6 changed files with 312 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from .base import BaseTool, ComponentTool
from .google import GoogleSearchTool
from .wikipedia import WikipediaTool
__all__ = ["BaseTool", "ComponentTool", "GoogleSearchTool", "WikipediaTool"]