Nexus One AI ๐Ÿ”” Basic Tier
๐Ÿ““
โ† All Tools

Jupyter Notebook

Write and run Python code in your browser โ€” the development environment for AI experimentation and automation.
Open Jupyter โ†— ๐ŸŒ http://ai.local:8888
What is it?

In plain terms

Jupyter Notebook lets you write Python code in your browser and run it cell by cell, seeing the output immediately. It's designed for data exploration, AI prototyping, and building workflows step-by-step โ€” without needing to set up a full Python environment on your computer.

What you can do

  • Write AI code and run it on the server's GPU
  • Test LangChain pipelines interactively
  • Process and analyse datasets
  • Run fine-tuning jobs (QLoRA / Unsloth)
  • Save your work as a reusable notebook file
  • Mix code, results, charts, and explanations in one document
How to access it

Open in your browser

URL http://ai.local:8888
Or via IP http://[server-ip]:8888
Token Ask your administrator
๐Ÿ’ก Code you run in Jupyter executes on the server, not your computer. This means it has full access to the GPU, all installed models, and the full AI stack.
Getting started
1

Open Jupyter in your browser

Go to http://ai.local:8888. You'll see the file browser showing notebooks saved on the server.

2

Create a new notebook

Click New โ†’ Python 3 to create a new notebook. A blank notebook opens with one empty cell.

3

Write and run code

Click into a cell, type your Python code, then press Shift + Enter to run it. The output appears directly below the cell.

4

Try calling Ollama from Python

Paste this into a cell and run it:

import ollama
response = ollama.chat(model="llama3.1:8b", messages=[{"role": "user", "content": "Explain RAG in one sentence"}])
print(response["message"]["content"])

5

Save your work

Press Ctrl + S (or Cmd + S on Mac) to save your notebook. It's saved on the server and will be there next time you open Jupyter.

Works with
๐Ÿฆ™ Ollama ๐Ÿ”— LangChain ๐Ÿ—‚๏ธ ChromaDB ๐ŸŽฏ QLoRA / Unsloth