What are Notebooks?
Notebooks are standard Jupyter.ipynb files — no lock-in. You can create, edit, and share them without any compute. To execute code, connect one to a project.
Creating a Notebook
- Go to Notebooks in your organization
- Click New Notebook
- Set a title and visibility
- Start writing
.ipynb files.
The Editor
Notebooks have two cell types: code and markdown. Switch modes withEnter (edit) and Esc (command).
| Shortcut | Action |
|---|---|
Shift + Enter | Run cell, move to next |
Ctrl/Cmd + Enter | Run cell in place |
A / B | Insert cell above / below |
X | Delete cell |
M / Y | Convert to markdown / code |
Execution
To run code, connect your notebook to a project’s kernel:- Open the notebook
- Select an Organization and Project
- Run cells with
Shift + Enter
!pip install and restart the kernel afterward.
AI Assistance
AI is built into the editor. No extensions needed.- Prompt in cell:
Ctrl/Cmd + Kto generate content for the current cell - Generate cells: Press
F/Gfor code orS/Dfor markdown (above/below) - Chat panel: Ask questions about your code with context from your notebook
Publishing & Sharing
Toggle a notebook to Public to make it searchable and shareable.- Direct link:
https://runalph.ai/{org}/~/notebooks/{slug} - Embed:
<iframe src="https://runalph.ai/embed/notebooks/{id}" /> - Export: Download as
.ipynb, HTML, PDF, Markdown, or Python script
Semantic Search
Find notebooks and individual cells by meaning, not just keywords.- Go to Notebooks (global)
- Search with natural language (e.g., “sentiment analysis with transformers”)
- Filter by tags, author, or date