-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Since the main goal of this package is to provide tools to Jupyter AI, it should be easy to import the tools from this package.
Right now, since all the toolkits are stored in variables named toolkit
, the consumer has to write long import aliases to get separate references to each toolkit:
from jupyter_ai_tools.toolkits.file_system import toolkit as fs_toolkit
from jupyter_ai_tools.toolkits.code_execution import toolkit as codeexec_toolkit
from jupyter_ai_tools.toolkits.git import toolkit as git_toolkit
...
Proposed solution
Allow a consumer to write:
from jupyter_ai_tools import (
fs_toolkit,
codeexec_toolkit,
git_toolkit
)
3coins
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request