We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ToolRegistry
Currently, we deal with tools as in core/quivr_core/llm_tools/web_search_tools.py.
We should rather define our own QuivrToolBase class where tools inherit from, e.g.
QuivrToolBase
class TavilyTool(BaseTool)
We can then use a ProxyMapping as a registry to the tools. We could create tools (as classes or objects) and retrieve them.
The text was updated successfully, but these errors were encountered:
CORE-275 Refactor `ToolRegistry`
Sorry, something went wrong.
jacopo-chevallard
No branches or pull requests
Currently, we deal with tools as in core/quivr_core/llm_tools/web_search_tools.py.
We should rather define our own
QuivrToolBase
class where tools inherit from, e.g.class TavilyTool(BaseTool)
We can then use a ProxyMapping as a registry to the tools. We could create tools (as classes or objects) and retrieve them.
The text was updated successfully, but these errors were encountered: