Changelog

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 persona
  • all: include all matching personas

v2.1 - 2026-04-21

Changed

  • Updated Search Config in the public API:
    • Renamed people.persona_id to people.personas_ids
    • Changed the field type from a single string to an array of persona IDs

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"]
  }
}