paratext-cli 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- paratext_cli-0.1.0/.github/workflows/ci.yml +20 -0
- paratext_cli-0.1.0/.github/workflows/publish.yml +65 -0
- paratext_cli-0.1.0/.gitignore +28 -0
- paratext_cli-0.1.0/AGENTS.md +254 -0
- paratext_cli-0.1.0/LICENSE +202 -0
- paratext_cli-0.1.0/NOTICE +7 -0
- paratext_cli-0.1.0/PKG-INFO +233 -0
- paratext_cli-0.1.0/README.md +208 -0
- paratext_cli-0.1.0/assets/logo.png +0 -0
- paratext_cli-0.1.0/assets/logo.svg +10 -0
- paratext_cli-0.1.0/docs/configuration.md +92 -0
- paratext_cli-0.1.0/docs/export.md +102 -0
- paratext_cli-0.1.0/docs/green-scheduling.md +56 -0
- paratext_cli-0.1.0/docs/hf-export-spec.md +311 -0
- paratext_cli-0.1.0/docs/publishing.md +74 -0
- paratext_cli-0.1.0/docs/scanned-cards.md +78 -0
- paratext_cli-0.1.0/paratext.example.toml +28 -0
- paratext_cli-0.1.0/pyproject.toml +60 -0
- paratext_cli-0.1.0/src/paratext/AGENTS.md +1 -0
- paratext_cli-0.1.0/src/paratext/__init__.py +3 -0
- paratext_cli-0.1.0/src/paratext/carbon.py +438 -0
- paratext_cli-0.1.0/src/paratext/cards.py +233 -0
- paratext_cli-0.1.0/src/paratext/catalogue.py +370 -0
- paratext_cli-0.1.0/src/paratext/cli.py +754 -0
- paratext_cli-0.1.0/src/paratext/config.py +160 -0
- paratext_cli-0.1.0/src/paratext/datasets.py +206 -0
- paratext_cli-0.1.0/src/paratext/extract.py +153 -0
- paratext_cli-0.1.0/src/paratext/hf_export.py +420 -0
- paratext_cli-0.1.0/src/paratext/inspect.py +73 -0
- paratext_cli-0.1.0/src/paratext/io.py +142 -0
- paratext_cli-0.1.0/src/paratext/packaging.py +135 -0
- paratext_cli-0.1.0/src/paratext/paratext.example.toml +1 -0
- paratext_cli-0.1.0/src/paratext/projects/__init__.py +350 -0
- paratext_cli-0.1.0/src/paratext/projects/card_template/__init__.py +51 -0
- paratext_cli-0.1.0/src/paratext/projects/card_template/prompt.md +27 -0
- paratext_cli-0.1.0/src/paratext/projects/card_template/schema.py +16 -0
- paratext_cli-0.1.0/src/paratext/records.py +155 -0
- paratext_cli-0.1.0/src/paratext/review/__init__.py +3 -0
- paratext_cli-0.1.0/src/paratext/review/hf_oauth.py +97 -0
- paratext_cli-0.1.0/src/paratext/review/server.py +648 -0
- paratext_cli-0.1.0/src/paratext/review/static/app.js +1702 -0
- paratext_cli-0.1.0/src/paratext/review/static/favicon.svg +10 -0
- paratext_cli-0.1.0/src/paratext/review/static/index.html +188 -0
- paratext_cli-0.1.0/src/paratext/review/static/oat.min.css +1 -0
- paratext_cli-0.1.0/src/paratext/review/static/oat.min.js +1 -0
- paratext_cli-0.1.0/src/paratext/runner.py +95 -0
- paratext_cli-0.1.0/src/paratext/scaffold.py +411 -0
- paratext_cli-0.1.0/src/paratext/sources.py +224 -0
- paratext_cli-0.1.0/src/paratext/store.py +202 -0
- paratext_cli-0.1.0/tests/test_carbon.py +138 -0
- paratext_cli-0.1.0/tests/test_catalogue.py +161 -0
- paratext_cli-0.1.0/tests/test_cli.py +44 -0
- paratext_cli-0.1.0/tests/test_config.py +46 -0
- paratext_cli-0.1.0/tests/test_extract.py +19 -0
- paratext_cli-0.1.0/tests/test_guide.py +31 -0
- paratext_cli-0.1.0/tests/test_hf_export.py +222 -0
- paratext_cli-0.1.0/tests/test_io.py +46 -0
- paratext_cli-0.1.0/tests/test_packaging.py +86 -0
- paratext_cli-0.1.0/tests/test_project_audit.py +77 -0
- paratext_cli-0.1.0/tests/test_records.py +57 -0
- paratext_cli-0.1.0/tests/test_review.py +232 -0
- paratext_cli-0.1.0/tests/test_rounds.py +71 -0
- paratext_cli-0.1.0/tests/test_scaffold.py +191 -0
- paratext_cli-0.1.0/tests/test_show_through.py +52 -0
- paratext_cli-0.1.0/tests/test_sources.py +65 -0
- paratext_cli-0.1.0/tests/test_verso.py +72 -0
- paratext_cli-0.1.0/uv.lock +1409 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
- name: Install uv
|
|
14
|
+
uses: astral-sh/setup-uv@v5
|
|
15
|
+
- name: Sync (dev extra)
|
|
16
|
+
run: uv sync --extra dev
|
|
17
|
+
- name: Lint
|
|
18
|
+
run: uv run ruff check
|
|
19
|
+
- name: Test
|
|
20
|
+
run: uv run pytest -q
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
name: Publish
|
|
2
|
+
|
|
3
|
+
# Publishes paratext-cli to PyPI via Trusted Publishing (OIDC) — no API token is
|
|
4
|
+
# stored anywhere. PyPI must have a publisher registered for this repo and this
|
|
5
|
+
# workflow filename; see docs/publishing.md.
|
|
6
|
+
#
|
|
7
|
+
# Triggered by publishing a GitHub Release, so a publish is always a deliberate
|
|
8
|
+
# act with a changelog attached. A PyPI version can never be reused, so the job
|
|
9
|
+
# checks the tag against pyproject.toml and runs the tests before uploading.
|
|
10
|
+
|
|
11
|
+
on:
|
|
12
|
+
release:
|
|
13
|
+
types: [published]
|
|
14
|
+
workflow_dispatch:
|
|
15
|
+
inputs:
|
|
16
|
+
dry-run:
|
|
17
|
+
description: "Build and check, but don't upload"
|
|
18
|
+
type: boolean
|
|
19
|
+
default: true
|
|
20
|
+
|
|
21
|
+
jobs:
|
|
22
|
+
publish:
|
|
23
|
+
runs-on: ubuntu-latest
|
|
24
|
+
environment: pypi
|
|
25
|
+
permissions:
|
|
26
|
+
# Mints the short-lived OIDC token uv exchanges for a PyPI credential.
|
|
27
|
+
# Nothing else here needs write access.
|
|
28
|
+
id-token: write
|
|
29
|
+
steps:
|
|
30
|
+
- uses: actions/checkout@v4
|
|
31
|
+
- name: Install uv
|
|
32
|
+
uses: astral-sh/setup-uv@v5
|
|
33
|
+
|
|
34
|
+
- name: Check the tag matches the packaged version
|
|
35
|
+
if: github.event_name == 'release'
|
|
36
|
+
run: |
|
|
37
|
+
tag="${GITHUB_REF_NAME#v}"
|
|
38
|
+
pkg=$(uv version --short)
|
|
39
|
+
if [ "$tag" != "$pkg" ]; then
|
|
40
|
+
echo "::error::release tag $tag != pyproject version $pkg." \
|
|
41
|
+
"Bump the version or retag — a published version can't be replaced."
|
|
42
|
+
exit 1
|
|
43
|
+
fi
|
|
44
|
+
echo "publishing version $pkg"
|
|
45
|
+
|
|
46
|
+
# The release could be cut from any commit; CI having passed on main is not
|
|
47
|
+
# the same as it passing here. Cheap insurance against an unfixable upload.
|
|
48
|
+
- name: Sync (dev extra)
|
|
49
|
+
run: uv sync --extra dev
|
|
50
|
+
- name: Lint
|
|
51
|
+
run: uv run ruff check
|
|
52
|
+
- name: Test
|
|
53
|
+
run: uv run pytest -q
|
|
54
|
+
|
|
55
|
+
- name: Build
|
|
56
|
+
run: uv build
|
|
57
|
+
|
|
58
|
+
- name: Check metadata
|
|
59
|
+
run: uvx twine check dist/*
|
|
60
|
+
|
|
61
|
+
- name: Publish to PyPI
|
|
62
|
+
if: github.event_name == 'release' || !inputs.dry-run
|
|
63
|
+
# `always` so a misconfigured publisher fails loudly instead of falling
|
|
64
|
+
# back to looking for a token that doesn't exist.
|
|
65
|
+
run: uv publish --trusted-publishing always
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
.venv/
|
|
5
|
+
*.egg-info/
|
|
6
|
+
dist/
|
|
7
|
+
build/
|
|
8
|
+
|
|
9
|
+
# Editor
|
|
10
|
+
.vscode/
|
|
11
|
+
.idea/
|
|
12
|
+
|
|
13
|
+
# Environment
|
|
14
|
+
.env
|
|
15
|
+
|
|
16
|
+
# Outputs (anchored to repo root so they don't shadow src/paratext/review/)
|
|
17
|
+
/runs/
|
|
18
|
+
/output/
|
|
19
|
+
/review/
|
|
20
|
+
/logs/
|
|
21
|
+
|
|
22
|
+
# Working notes are kept outside this repo (it is public); these rules are a
|
|
23
|
+
# guard so an internal note dropped in here can't be committed by accident.
|
|
24
|
+
HANDOFF.md
|
|
25
|
+
WORKING-NOTES.md
|
|
26
|
+
|
|
27
|
+
# Deployed service venv (built from a wheel; not source)
|
|
28
|
+
/deploy/
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
# paratext — agent guide
|
|
2
|
+
|
|
3
|
+
Modular metadata-extraction pipeline for digitised library/archive collections,
|
|
4
|
+
driven by a multimodal model. This orients AI coding agents; `README.md` is the
|
|
5
|
+
human guide.
|
|
6
|
+
|
|
7
|
+
paratext is **built to be adapted**. Most users need a project of their own, and
|
|
8
|
+
some need a new input format or a new export format. Those are extension points,
|
|
9
|
+
not forks — the recipes below are the supported way in.
|
|
10
|
+
|
|
11
|
+
## Rules
|
|
12
|
+
|
|
13
|
+
- **Read a file in full before editing it.** These modules are short by design;
|
|
14
|
+
there is no excuse for patching blind.
|
|
15
|
+
- **Run `uv run pytest -q` and `uv run ruff check` after every change.** Both must
|
|
16
|
+
be clean. Line length 100, rules E/F/I/W.
|
|
17
|
+
- **Never edit `prompt.md` and `schema.py` casually.** A prompt edit rolls a new
|
|
18
|
+
review round and invalidates comparisons; a schema change needs a
|
|
19
|
+
`schema_version` bump. Both cost a model run to re-evaluate.
|
|
20
|
+
- **Keep a project's fields in step across all three places** (schema, prompt,
|
|
21
|
+
view) and call `audit_project()` from its tests.
|
|
22
|
+
- **Add a notice, not a silent fallback.** If you write a degraded path, append to
|
|
23
|
+
`Source.notices` so `extract` reports it. Preprocessing that silently does
|
|
24
|
+
nothing looks like a clean run and quietly costs accuracy — it is the worst
|
|
25
|
+
failure mode in this codebase.
|
|
26
|
+
- **Don't hardcode institution-specific values.** Detector weights, verso
|
|
27
|
+
thresholds and grid regions are all config.
|
|
28
|
+
- **Ask before removing functionality** that looks deliberate.
|
|
29
|
+
- Say "multimodal model" or "the model" — never "VLM".
|
|
30
|
+
|
|
31
|
+
## Setup, build, run
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
uv sync --extra dev # add --extra detector for the torch card detector
|
|
35
|
+
uv run paratext … # run the CLI against local source
|
|
36
|
+
uv run pytest -q
|
|
37
|
+
uv run ruff check
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Python 3.11–3.13 via `uv`. The model endpoint is any OpenAI-compatible server;
|
|
41
|
+
set `base-url` in `paratext.toml` or `PARATEXT_BASE_URL`.
|
|
42
|
+
|
|
43
|
+
**The installed-vs-source trap:** a non-editable install means source edits do
|
|
44
|
+
nothing until reinstall. `paratext inspect` reports the *installed* project — when
|
|
45
|
+
behaviour doesn't match the source you're reading, check there first.
|
|
46
|
+
|
|
47
|
+
## Architecture
|
|
48
|
+
|
|
49
|
+
One CLI runs the loop: `extract` (model → JSONL) → `package` (JSONL → review
|
|
50
|
+
dataset) → `review` (web UI) → `export` (publish). `run` does extract+package.
|
|
51
|
+
|
|
52
|
+
| Module | Responsibility |
|
|
53
|
+
| --- | --- |
|
|
54
|
+
| `cli.py` | Argparse wiring, round resolution, command bodies |
|
|
55
|
+
| `config.py` | `paratext.toml` + `PARATEXT_*` resolution |
|
|
56
|
+
| `projects/` | The `Project` plug-in contract, `View`, `audit_project` |
|
|
57
|
+
| `sources.py` | Input adapters (`image_source`, `pdf_source`) |
|
|
58
|
+
| `extract.py` / `runner.py` | Sample loop; model call, retries, image encoding |
|
|
59
|
+
| `packaging.py` | JSONL → `samples.json` + `images/` + `view.json` |
|
|
60
|
+
| `store.py` | SQLite annotations + gold labels — **not** web code |
|
|
61
|
+
| `datasets.py` | Discovering packaged rounds, resolving `view.json` |
|
|
62
|
+
| `records.py` | Format-neutral gold selection, shared by all exports |
|
|
63
|
+
| `catalogue.py` / `hf_export.py` | MARC/DC and Hugging Face exports |
|
|
64
|
+
| `review/server.py` | HTTP layer only; `review/static/` is the vanilla-JS frontend |
|
|
65
|
+
| `cards.py` | Optional scanned-card tools (verso, crop, show-through) |
|
|
66
|
+
| `carbon.py` | Grid-intensity providers for `--green` |
|
|
67
|
+
|
|
68
|
+
`store.py` and `datasets.py` are deliberately outside `review/` so exporters can
|
|
69
|
+
read a reviewed round without starting a web server.
|
|
70
|
+
|
|
71
|
+
Output is JSONL with a `_provenance` header (git commit, prompt hash, model,
|
|
72
|
+
schema version, timestamp), and is resumable: re-running with the same `--output`
|
|
73
|
+
skips ids already present.
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
# Extending paratext
|
|
78
|
+
|
|
79
|
+
## Recipe: a new project
|
|
80
|
+
|
|
81
|
+
The common case — a user's own collection. `paratext new <name>` scaffolds it;
|
|
82
|
+
these are the files it makes and what to edit.
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
my_cards/
|
|
86
|
+
prompt.md # behaviour lives here
|
|
87
|
+
schema.py # Pydantic model = the fields, also sent as response_format
|
|
88
|
+
__init__.py # wires them into PROJECT
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
```python
|
|
92
|
+
from paratext.projects import Project, load_prompt
|
|
93
|
+
from paratext.sources import image_source
|
|
94
|
+
|
|
95
|
+
from .schema import Record
|
|
96
|
+
|
|
97
|
+
PROJECT = Project(
|
|
98
|
+
name="my-cards",
|
|
99
|
+
schema_version="v1",
|
|
100
|
+
prompt=load_prompt(__file__),
|
|
101
|
+
schema=Record,
|
|
102
|
+
source=image_source(),
|
|
103
|
+
)
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Register it in the user's `pyproject.toml`:
|
|
107
|
+
|
|
108
|
+
```toml
|
|
109
|
+
[project.entry-points."paratext.projects"]
|
|
110
|
+
my-cards = "my_cards:PROJECT"
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Then `uv sync` — entry points are re-scanned per request, so the review server
|
|
114
|
+
picks up a new project without a restart, but **framework code changes still need
|
|
115
|
+
one**.
|
|
116
|
+
|
|
117
|
+
Optional, in order of how often you'll need them:
|
|
118
|
+
|
|
119
|
+
- `view=View(...)` — curate the review display. Defaults to every schema field.
|
|
120
|
+
- `curate(rec) -> Curation` — `keep` / `drop` / `quarantine` per record.
|
|
121
|
+
- `build_record(rec, images)` — extra keys in `samples.json`.
|
|
122
|
+
- `ground_truth(rec)` — attach existing catalogue data for side-by-side review.
|
|
123
|
+
- `disable_thinking` — some models need `enable_thinking=False`.
|
|
124
|
+
|
|
125
|
+
**Field discipline:** the field names appear in schema, prompt and view with no
|
|
126
|
+
compile-time link. `audit_project(PROJECT)` checks the view's fields exist in the
|
|
127
|
+
schema and that every model-output field is named in the prompt. Call it from a
|
|
128
|
+
test — `paratext new` generates one.
|
|
129
|
+
|
|
130
|
+
Put behaviour in `prompt.md` (prose, examples, versioned by the prompt hash).
|
|
131
|
+
Keep `Field(description=...)` short and structural: it is *also* sent to the
|
|
132
|
+
model and shouldn't restate the prompt in a second voice.
|
|
133
|
+
|
|
134
|
+
## Recipe: a new source adapter
|
|
135
|
+
|
|
136
|
+
For an input shape neither `image_source` nor `pdf_source` covers — a IIIF
|
|
137
|
+
manifest, a METS/ALTO tree, a CSV of URLs, a database query.
|
|
138
|
+
|
|
139
|
+
A `Source` is two functions that must agree on the metadata they pass between
|
|
140
|
+
them, plus optional notices and a descriptive config:
|
|
141
|
+
|
|
142
|
+
```python
|
|
143
|
+
from paratext.sources import Source
|
|
144
|
+
from paratext.projects import Sample
|
|
145
|
+
from paratext.packaging import save_image
|
|
146
|
+
|
|
147
|
+
def iiif_source(*, max_items: int | None = None) -> Source:
|
|
148
|
+
notices: list[str] = []
|
|
149
|
+
|
|
150
|
+
def _iter(source: Path, limit: int | None) -> Iterator[Sample]:
|
|
151
|
+
# yield one Sample per unit of work
|
|
152
|
+
yield Sample(
|
|
153
|
+
id="unique-stable-id", # becomes the JSONL/review key
|
|
154
|
+
images=[pil_image], # what the model sees
|
|
155
|
+
metadata={"iiif_url": url}, # anything materialise() will need
|
|
156
|
+
)
|
|
157
|
+
|
|
158
|
+
def _materialise(rec: dict, out: Path, max_size: int) -> list[str]:
|
|
159
|
+
# write review images under `out`, return paths relative to it
|
|
160
|
+
rel = f"images/{rec['id']}/image.jpg"
|
|
161
|
+
save_image(local_path, out / rel, max_size)
|
|
162
|
+
return [rel]
|
|
163
|
+
|
|
164
|
+
return Source(
|
|
165
|
+
iter_samples=_iter,
|
|
166
|
+
materialise=_materialise,
|
|
167
|
+
notices=notices,
|
|
168
|
+
config={"kind": "iiif", "max_items": max_items}, # shown by `paratext inspect`
|
|
169
|
+
)
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Rules specific to sources:
|
|
173
|
+
|
|
174
|
+
- **`id` must be stable across runs** — resume and round-updating both key on it.
|
|
175
|
+
- **`metadata` is the contract between the two halves.** `_materialise` runs at
|
|
176
|
+
packaging time, long after iteration, and gets only the JSONL record.
|
|
177
|
+
- **Degrade loudly.** Falling back? `notices.append(...)`, and say what to do
|
|
178
|
+
about it.
|
|
179
|
+
- **`config` is descriptive only** — nothing reads it back to make decisions; it
|
|
180
|
+
exists so `paratext inspect` can show what preprocessing was applied.
|
|
181
|
+
- If your images need no special handling, reuse `packaging.default_materialise`
|
|
182
|
+
rather than writing the same six lines again.
|
|
183
|
+
|
|
184
|
+
A source can also pre-classify a sample to skip the model entirely: set
|
|
185
|
+
`metadata["preclassified"] = {...}` and `extract` writes it straight through
|
|
186
|
+
(this is how the verso filter avoids paying for blank card backs).
|
|
187
|
+
|
|
188
|
+
## Recipe: a new export format
|
|
189
|
+
|
|
190
|
+
For a shape the built-in `hf` / `marc` / `dc` don't cover — EAD, MODS, a local ILS
|
|
191
|
+
format, a CSV for a spreadsheet workflow.
|
|
192
|
+
|
|
193
|
+
**Never re-derive which records are gold.** `records.select_records()` is the
|
|
194
|
+
single source of truth and every format shares it:
|
|
195
|
+
|
|
196
|
+
```python
|
|
197
|
+
from paratext.records import select_records
|
|
198
|
+
|
|
199
|
+
sel = select_records(dataset_dir, project, db_path=db_path)
|
|
200
|
+
for rec in sel.records:
|
|
201
|
+
rec.label # {field: value} — the gold label
|
|
202
|
+
rec.status # verified | corrected | rejected
|
|
203
|
+
rec.verdict # the model's original verdict, kept for corrected rows
|
|
204
|
+
rec.document_id # stable id, falls back to rec.sid
|
|
205
|
+
rec.images # resolved paths (may be empty)
|
|
206
|
+
sel.schema_fields # field order from the Pydantic schema
|
|
207
|
+
sel.provenance # model, prompt_hash, schema_version
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
Then follow `catalogue.py`'s shape — a pure `build_*(records, mapping)` that
|
|
211
|
+
returns bytes or a tree, and a `run()` that selects, builds and writes:
|
|
212
|
+
|
|
213
|
+
1. Write `build_ead(records, mapping) -> ET.ElementTree` with no I/O, so it's
|
|
214
|
+
unit-testable without a dataset on disk.
|
|
215
|
+
2. Add a `run(dataset_dir, project, fmt)` that calls `select_records`, builds,
|
|
216
|
+
and writes to `EXPORT_ROOT`.
|
|
217
|
+
3. Plumb it into the CLI in `cli.py`: add the name to `--format`'s `choices`, to
|
|
218
|
+
`_FORMAT_MENU`, and to the `_cmd_export` dispatch.
|
|
219
|
+
4. If fields need mapping to a target vocabulary, reuse `resolve_mapping()` —
|
|
220
|
+
config under `[project.<name>.export.<fmt>]` wins, then canonical inference by
|
|
221
|
+
field name, and anything left goes to the wizard. Unmapped fields are dropped
|
|
222
|
+
with a warning, **never** a hard error.
|
|
223
|
+
|
|
224
|
+
To expose it in the review UI's export modal as well, add a tab in
|
|
225
|
+
`review/static/app.js` (`openExportModal`) and an endpoint in `review/server.py`
|
|
226
|
+
alongside `_api_export_catalogue`.
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
## Conventions
|
|
231
|
+
|
|
232
|
+
- **Rounds.** `run` writes `review/<project>-r<N>`, keyed on the **prompt hash**:
|
|
233
|
+
editing `prompt.md` rolls a new round (the UI diffs the two latest); re-running
|
|
234
|
+
the same prompt updates the current round in place, keeping its annotations.
|
|
235
|
+
Rounds are linear — reverting a prompt starts a new round, it doesn't return to
|
|
236
|
+
the old one. `--round N` forces; `--fresh` rebuilds and discards annotations.
|
|
237
|
+
- **Reading feedback back into the prompt.** `annotations.db` holds verdicts and
|
|
238
|
+
notes (`annotations`) and human-corrected answers (`gold_labels`); read it via
|
|
239
|
+
`store.py`. With the server running, `GET /api/stats` gives accuracy and
|
|
240
|
+
eval-gold size. Tighten the fields reviewers corrected most.
|
|
241
|
+
The `annotations.corrections` column is unrelated — handwritten corrections on
|
|
242
|
+
the *card*, not reviewer edits.
|
|
243
|
+
- **Export gold** is `good_enough` rows (`_label_status: verified`) plus corrected
|
|
244
|
+
`gold_labels` rows (`corrected`). `_verdict` preserves the model's original
|
|
245
|
+
verdict, so accuracy still measures the model, not the human who fixed it.
|
|
246
|
+
- **`paratext.cards`** (verso filter, RetinaNet crop, show-through suppression) is
|
|
247
|
+
**off by default** and calibrated on one library's scans. Never assume it
|
|
248
|
+
transfers to another collection unchanged.
|
|
249
|
+
- **`paratext carbon` / `run --green`** is opt-in carbon-aware scheduling; the grid
|
|
250
|
+
region is declared in `[carbon]`, never auto-detected. Stdlib `urllib` only.
|
|
251
|
+
- **Config keys are kebab-case** (`base-url`), matching the CLI flag that sets
|
|
252
|
+
them. Snake_case still parses so old configs work, but generate kebab-case.
|
|
253
|
+
- **Bump `schema_version`** when a schema changes.
|
|
254
|
+
- **Commits:** short messages, no Co-Authored-By trailer.
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|