@notebook-intelligence/notebook-intelligence 2.2.3 → 2.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Notebook Intelligence (NBI) is an AI coding assistant and extensible AI framework for JupyterLab. It can use GitHub Copilot or AI models from any other LLM Provider, including local models from [Ollama](https://ollama.com/). NBI greatly boosts the productivity of JupyterLab users with AI assistance.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Feature Highlights
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
-
|
|
10
|
-
|
|
7
|
+
### Agent Mode
|
|
8
|
+
|
|
9
|
+
In Agent Mode, built-in AI agent creates, edits and executes notebooks for you interactively. It can detect issues in the cells and fix for you.
|
|
10
|
+
|
|
11
|
+

|
|
11
12
|
|
|
12
13
|
### Code generation with inline chat
|
|
13
14
|
|
|
@@ -27,6 +28,13 @@ Auto-complete suggestions are shown as you type. Clicking `Tab` key accepts the
|
|
|
27
28
|
|
|
28
29
|
<img src="media/copilot-chat.gif" alt="Chat interface" width=600 />
|
|
29
30
|
|
|
31
|
+
See blog posts for more features and usage.
|
|
32
|
+
|
|
33
|
+
- [Introducing Notebook Intelligence!](https://notebook-intelligence.github.io/notebook-intelligence/blog/2025/01/08/introducing-notebook-intelligence.html)
|
|
34
|
+
- [Building AI Extensions for JupyterLab](https://notebook-intelligence.github.io/notebook-intelligence/blog/2025/02/05/building-ai-extensions-for-jupyterlab.html)
|
|
35
|
+
- [Building AI Agents for JupyterLab](https://notebook-intelligence.github.io/notebook-intelligence/blog/2025/02/09/building-ai-agents-for-jupyterlab.html)
|
|
36
|
+
- [Notebook Intelligence now supports any LLM Provider and AI Model!](https://notebook-intelligence.github.io/notebook-intelligence/blog/2025/03/05/support-for-any-llm-provider.html)
|
|
37
|
+
|
|
30
38
|
## Installation
|
|
31
39
|
|
|
32
40
|
NBI requires JupyterLab >= 4.0.0. To install the extension, run the command below and restart JupyterLab.
|
|
@@ -67,6 +75,23 @@ To let Notebook Intelligence remember your GitHub access token, go to Notebook I
|
|
|
67
75
|
|
|
68
76
|
If your stored access token fails to login (due to expiration or other reasons), you will be prompted to relogin on the UI.
|
|
69
77
|
|
|
78
|
+
### Notebook execute tool options
|
|
79
|
+
|
|
80
|
+
Notebook execute tool is enabled by default in Agent Mode. However, you can disable it or make it controlled by an environment variable.
|
|
81
|
+
|
|
82
|
+
In order to disable Notebook execute tool:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
jupyter lab --NotebookIntelligence.notebook_execute_tool=disabled
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
In order to disable Notebook execute tool by default but allow enabling using an environment variable:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
NBI_NOTEBOOK_EXECUTE_TOOL=enabled
|
|
92
|
+
jupyter lab --NotebookIntelligence.notebook_execute_tool=env_enabled
|
|
93
|
+
```
|
|
94
|
+
|
|
70
95
|
### Configuration files
|
|
71
96
|
|
|
72
97
|
NBI saves configuration at `~/.jupyter/nbi-config.json`. It also supports environment wide base configuration at `<env-prefix>/share/jupyter/nbi-config.json`. Organizations can ship default configuration at this environment wide config path. User's changes will be stored as overrides at `~/.jupyter/nbi-config.json`.
|