v2.2 - 2026-04-28
Added people.persona_strategy to API configuration payloads.
API callers can now choose the persona matching behavior with the same values used internally by Mantiks:
best: keep the best matching personaall: include all matching personas
v2.1 - 2026-04-21
Changed
- Updated
Search Configin the public API:- Renamed
people.persona_idtopeople.personas_ids - Changed the field type from a single string to an array of persona IDs
- Renamed
Why
- This aligns the API config format with the existing model, where multiple personas can already be selected.
Migration
Before:
{
"people": {
"persona_id": "special-best-fitting"
}
}
After:
{
"people": {
"personas_ids": ["special-best-fitting"]
}
}
