POST
/functions/v1/decideRequest JSON
{
"inputs": [
{
"type": "text",
"label": "meal options",
"data": "Option A: oatmeal with berries. Option B: croissant and jam."
}
],
"user_context": {
"language": "en",
"notes": "Prefer steady energy"
}
}Response JSON
{
"status": "completed",
"result": {
"answer_text": "Choose option A. It is more likely to provide steady energy."
},
"error": null
}curl -X POST 'https://tirqjzahcinadeulfylj.supabase.co/functions/v1/decide' \
-H 'x-api-key: $MYMOLECULES_API_KEY' \
-H 'Content-Type: application/json' \
--data '{ "inputs": [ { "type": "text", "label": "meal options", "data": "Option A: oatmeal with berries. Option B: croissant and jam." } ], "user_context": { "language": "en", "notes": "Prefer steady energy" }}'