We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26745a commit 6acb033Copy full SHA for 6acb033
jupyter_ai_tools/__init__.py
@@ -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
+
6
__version__ = "0.2.1"
7
8
+__all__ = [
9
+ "fs_toolkit",
10
+ "codeexec_toolkit",
11
+ "git_toolkit",
12
+ "notebook_toolkit",
13
+]
14
15
16
def _jupyter_server_extension_points():
17
return [{"module": "jupyter_ai_tools"}]
0 commit comments