Skip to content

Notebook Intelligence

Start Notebook Intelligence from the side panel:

Start Notebook Intelligence

Then connect GitHub Copilot (or change the model provider).

Switch to agent, select all tools (via the settings button next to the Agent Selector) and give it a task:

NBI tools

You can also ask it to fill in code in specific cells.

For a more capable model you can also switch to Claude in the settings:

Claude

You can also self-host a model in Ollama on your computer. For this, install Ollama on your system and start the neurodesktop container with these additional Docker parameters:

Terminal window
--add-host=host.docker.internal:host-gateway \
-e OLLAMA_HOST="http://host.docker.internal:11434" \

This model works well:

Terminal window
ollama pull devstral

We need to extend the context window to make it usable for coding:

Terminal window
echo "FROM devstral:latest
PARAMETER num_ctx 16384" > Modelfile
ollama create devstral-16k -f Modelfile
rm Modelfile

Then switch to Ollama in the settings:

NBI Ollama settings