Spec-only preview. The API is not yet live; the surface below is what we are building toward. Request access to the closed beta.
curl --request POST \
--url https://api.jeantechnologies.com/v1/train \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domain": "dating",
"force": false
}
'{
"domain": "dating",
"status": "queued",
"run_id": "tr_2026_05_17_001",
"triplets_used": 4218,
"estimated_completion_minutes": 35
}Manually trigger a fine-tune for a domain ranker.
curl --request POST \
--url https://api.jeantechnologies.com/v1/train \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"domain": "dating",
"force": false
}
'{
"domain": "dating",
"status": "queued",
"run_id": "tr_2026_05_17_001",
"triplets_used": 4218,
"estimated_completion_minutes": 35
}By default, fine-tunes run automatically once the triplet budget for a domain is reached. Use this endpoint to force a run sooner: right after a major product change, a marketing push that shifts your user mix, or to validate that newly added outcomes flow through.Documentation Index
Fetch the complete documentation index at: https://docs.jeanmemory.com/llms.txt
Use this file to discover all available pages before exploring further.
curl https://api.jeantechnologies.com/v1/train \
-H "Authorization: Bearer $JEAN_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "domain": "dating", "force": true }'
{
"domain": "dating",
"status": "queued",
"run_id": "tr_2026_05_17_001",
"triplets_used": 4218,
"estimated_completion_minutes": 35
}
/match requests automatically use it.
API key issued by Jean Technologies. Contact the team for access.