File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 3333 shell : bash
3434 run : |
3535 pip cache purge || true
36- pip uninstall -y predicate-sdk || true
36+ pip uninstall -y predicate-sdk predicatelabs || true
3737 # Aggressively clean any bytecode cache (cross-platform Python approach)
3838 python -c "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.pyc')]" || true
3939 python -c "import pathlib, shutil; [shutil.rmtree(p) for p in pathlib.Path('.').rglob('__pycache__') if p.is_dir()]" || true
Original file line number Diff line number Diff line change @@ -32,6 +32,13 @@ pip install predicate-sdk
3232playwright install chromium
3333```
3434
35+ If you’re developing from source (this repo), install the local checkout instead:
36+
37+ ``` bash
38+ pip install -e .
39+ playwright install chromium
40+ ```
41+
3542## Conceptual example (why this exists)
3643
3744In Predicate, agents don’t “hope” an action worked.
You can’t perform that action at this time.
0 commit comments