Skip to content
Open
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
283a6af
Adding transform as opposed to iter
Parry-Parry Oct 15, 2025
15692e0
ruff fix
Parry-Parry Oct 15, 2025
c9188e2
ruff
Parry-Parry Oct 15, 2025
b158dcd
inspect passing
Parry-Parry Oct 16, 2025
45d7239
fix: add return of multi-question dataframe
Parry-Parry Oct 22, 2025
414f6a2
fix: HF test functionality
Parry-Parry Oct 22, 2025
6664838
fix: dev requirements now correctly point to github pyterrier
Parry-Parry Oct 22, 2025
d0f8899
fix: incorrect naming convention in requirements_dev.txt
Parry-Parry Oct 22, 2025
4bb815e
feat: remove dependency on prompt module
Parry-Parry Oct 22, 2025
c398637
feat: add different formatting for callable versus string
Parry-Parry Oct 23, 2025
f6c3cf6
add support for chat template
Parry-Parry Oct 24, 2025
ad45ecd
requirements: bump to 1.0
Parry-Parry Nov 24, 2025
8536b0e
fix: fully remove prompt transformer
Parry-Parry Nov 24, 2025
df50462
Delete .claude/settings.local.json
cmacdonald Nov 25, 2025
1f79ca9
feat: informative deprecation warning for PromptTransformer
Parry-Parry Nov 25, 2025
f0c50e1
Merge branch 'remove-prompt' of github.com:cmacdonald/pyterrier_rag i…
Parry-Parry Nov 25, 2025
68d9aef
Merge branch 'main' of github.com:cmacdonald/pyterrier_rag into remov…
Parry-Parry Nov 26, 2025
ee4bdb3
fix: allow setting tokenizer externally in HFBackend
Parry-Parry Nov 26, 2025
6133910
fix: removing dataframebuilder where lists are needed
Parry-Parry Nov 26, 2025
625f71e
fix: correct backend test format
Parry-Parry Nov 26, 2025
078ee6e
fix: ensure backend can be inspected
Parry-Parry Nov 26, 2025
0cc699c
fix: propagate batching in HF Backend
Parry-Parry Nov 28, 2025
dba340d
refactor: deprecate prompt, prompt transformer, concatenator
Parry-Parry Mar 2, 2026
c338d14
Merge origin/main into remove-prompt and resolve conflicts
Parry-Parry Mar 2, 2026
616def2
split: move backend and unrelated changes out of prompt refactor PR
Parry-Parry Mar 2, 2026
a7776fc
notebook: migrate mistral example off Concatenator and clear outputs
Parry-Parry Mar 2, 2026
1c09af2
split: backend and related infra updates from prompt refactor branch
Parry-Parry Mar 2, 2026
5567717
fix(fid): support modern tokenizer call interface
Parry-Parry Mar 2, 2026
8db1de5
infra: isolate requirements and framework export updates
Parry-Parry Mar 2, 2026
2f21729
fix: claude stuff not needed
Parry-Parry Mar 2, 2026
f84b95e
ruff
Parry-Parry Mar 2, 2026
028d6ac
Merge branch 'main' of github.com:cmacdonald/pyterrier_rag into backe…
Parry-Parry Mar 2, 2026
5100fa2
Merge branch 'main' into remove-prompt
Parry-Parry Mar 2, 2026
97b39a9
fix: remove reference to uv
Parry-Parry Mar 2, 2026
e33e190
docs: improve docstring for Reader
Parry-Parry Mar 2, 2026
30f1e90
docs: improve docstring for Reader
Parry-Parry Mar 2, 2026
3f57ed4
test: add new prompt format tests
Parry-Parry Mar 2, 2026
c94ead2
docs: improve with how-to guide
Parry-Parry Mar 3, 2026
f76c0d4
docs/examples: restore notebook outputs to match main
Parry-Parry Mar 4, 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 .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
pip install --upgrade -r requirements.txt -r requirements_dev.txt
pip install -e .

- name: Legacy Deprecation Contract
run: |
pytest -q tests/test_legacy_prompt_api.py

- name: Unit Test
run: |
pytest --durations=20 -p no:faulthandler --json-report --json-report-file ${{ env.runtag }}.results.json --cov pyterrier_rag --cov-report json:${{ env.runtag }}.coverage.json tests/
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,5 @@ ENV/
.DS_Store


examples/*/*_index
examples/*/*_index
uv.lock
Loading