kotaemon/knowledgehub/pipelines/tools/__init__.py
Tuan Anh Nguyen Dang (Tadashi_Cin) f9fc02a32a [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>
2023-09-29 10:18:49 +07:00

6 lines
194 B
Python

from .base import BaseTool, ComponentTool
from .google import GoogleSearchTool
from .wikipedia import WikipediaTool
__all__ = ["BaseTool", "ComponentTool", "GoogleSearchTool", "WikipediaTool"]