Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6cdc2ff
Remove griffe pin from pyproject.toml
rich-iannone Apr 15, 2026
1a24e5a
Remove docs directory
rich-iannone Apr 15, 2026
02ef344
Update .gitignore
rich-iannone Apr 15, 2026
32914be
Update .gitignore
rich-iannone Apr 15, 2026
b9fc959
Remove scraping; add API docs generator
rich-iannone Apr 15, 2026
375a2b7
Remove Text Formats section from user guide
rich-iannone Apr 15, 2026
5e8a018
Delete generate_llms_txt.py
rich-iannone Apr 15, 2026
ecac369
Update Makefile
rich-iannone Apr 15, 2026
c2fe23a
Update 04-draft-validation.qmd
rich-iannone Apr 15, 2026
7f51c2f
Update 02-validation-methods.qmd
rich-iannone Apr 15, 2026
8b3983b
Update README.zh-CN.md
rich-iannone Apr 15, 2026
c917ff3
Update README.pt-BR.md
rich-iannone Apr 15, 2026
1980200
Update README.nl.md
rich-iannone Apr 15, 2026
f468ce3
Update README.ko.md
rich-iannone Apr 15, 2026
8cb97f0
Update README.ja.md
rich-iannone Apr 15, 2026
c9b8c40
Update README.it.md
rich-iannone Apr 15, 2026
e7860b0
Update README.hi.md
rich-iannone Apr 15, 2026
60b0387
Update README.fr.md
rich-iannone Apr 15, 2026
7707512
Update README.es.md
rich-iannone Apr 15, 2026
af2a8bb
Update README.de.md
rich-iannone Apr 15, 2026
85d8d3e
Update README.ar.md
rich-iannone Apr 15, 2026
e6fc3b3
Update README.md
rich-iannone Apr 15, 2026
ae4ccb9
Update validate.py
rich-iannone Apr 15, 2026
6c91f6f
Update draft.py
rich-iannone Apr 15, 2026
7f27e65
Update assistant.py
rich-iannone Apr 15, 2026
21bed1a
Update _utils_ai.py
rich-iannone Apr 15, 2026
cd8e8da
Update api-docs.txt
rich-iannone Apr 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,7 @@ pointblank/py.typed

# Great Docs build directory (ephemeral, do not commit)
great-docs/

# Other directories
vhs/
pdf-export/
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ docs-pdf: ## Build PDF version of User Guide (HTML to PDF preserving graphics)
uv run python scripts/create_toc_pdf.py docs/user-guide.pdf
@echo "PDF available at docs/user-guide.pdf"

docs-llms: ## Generate llms.txt and llms-full.txt files for LLM consumption
@uv run python scripts/generate_llms_txt.py
docs-api-text: ## Regenerate api-docs.txt for DraftValidation/assistant
@uv run python scripts/generate_api_docs.py

docs-full: docs-build docs-llms ## Build docs and generate llms.txt files
docs-full: docs-build ## Build docs

install: dist ## install the package to the active Python's site-packages
python3 -m pip install --force-reinstall dist/pointblank*.whl
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import pointblank as pb
data = pb.load_dataset("game_revenue") # A sample dataset

# Use DraftValidation to generate a validation plan
pb.DraftValidation(data=data, model="anthropic:claude-sonnet-4-5")
pb.DraftValidation(data=data, model="anthropic:claude-opus-4-6")
```

The output is a complete validation plan with intelligent suggestions based on your data:
Expand Down
7 changes: 0 additions & 7 deletions docs/.gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions docs/_extensions/machow/interlinks/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions docs/_extensions/machow/interlinks/_extension.yml

This file was deleted.

Loading
Loading