DataDesigner/docs/notebook_source
Andre Manoel 8b79b21298 Initialize orphan Fern docs website branch
Preserves tree from previous docs-website head: 5e47d33ea8. This branch is a CI-managed publish artifact like gh-pages; source provenance is tracked in commit messages rather than Git ancestry.
2026-05-14 01:17:51 +00:00
..
1-the-basics.py Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
2-structured-outputs-and-jinja-expressions.py Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
3-seeding-with-a-dataset.py Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
4-providing-images-as-context.py Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
5-generating-images.py Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
6-editing-images-with-image-context.py Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
_pyproject.toml Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
_README.md Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00
README.md Initialize orphan Fern docs website branch 2026-05-14 01:17:51 +00:00

📓 Notebooks in .py Format

In this folder you can find all our tutorial notebooks in .py format. They can be converted to actual Jupyter notebooks by typing

make convert-execute-notebooks

from the root of the repository. This will not only convert but also execute all of the notebooks -- for that to work, make sure you went through our Quick Start and have API keys set. A new folder docs/notebooks will be created, including README.md and pyproject.toml files.

Alternatively, you can use Jupytext directly

uv run --group notebooks --group docs jupytext --to ipynb *.py

🔄 Converting Jupyter notebooks to .py

If you want to contribute with your own notebook, you can use the following command to generate .py files in the same format as the ones in this folder:

uv run jupytext --to py [notebook-name].ipynb -o [notebook-name].py