Skip to content

Commit 205c4b3

Browse files
committed
Exporting toolkits in root module
1 parent 87e75d2 commit 205c4b3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

jupyter_ai_tools/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
from .toolkits.code_execution import toolkit as codeexec_toolkit
2+
from .toolkits.file_system import toolkit as fs_toolkit
3+
from .toolkits.git import toolkit as git_toolkit
4+
from .toolkits.notebook import toolkit as notebook_toolkit
5+
16
__version__ = "0.2.1"
27

8+
__all__ = [
9+
"fs_toolkit",
10+
"codeexec_toolkit",
11+
"git_toolkit",
12+
"notebook_toolkit",
13+
]
14+
315

416
def _jupyter_server_extension_points():
517
return [{"module": "jupyter_ai_tools"}]

0 commit comments

Comments
 (0)