Accusys
|
d20819b03b
|
feat: add manual_seed.py for user-selected face trace seed creation
Implements:
- create_identity(): Create PG identity (source='manual')
- create_manual_seed(): Full flow from trace → seed → confirm
- Get trace centroid embedding from Qdrant _faces
- Create identity in PG
- Push to Qdrant _seeds
- Confirm trace binding (TKG + Qdrant + PG)
- Auto-trigger Round 2 propagation
- list_pending_traces(): List traces for user selection
- run_propagation(): Auto propagation trigger
Usage:
# List pending traces
python manual_seed.py --file-uuid <uuid> --list
# Create seed from trace
python manual_seed.py --file-uuid <uuid> --trace-id 1 --name 'John Doe'
# Custom UUID
python manual_seed.py --file-uuid <uuid> --trace-id 1 --name 'John Doe' --identity-uuid xxx
# No propagation
python manual_seed.py --file-uuid <uuid> --trace-id 1 --name 'John Doe' --no-propagate
Flow: select trace → label → create identity → push seed → auto-bind → propagate
|
2026-06-25 01:49:53 +08:00 |
|