record_answers_and_choose_path
Records user responses to determine their afterlife journey, selecting personalized reincarnation paths for interactive storytelling experiences.
Instructions
Record user's answers and choose their reincarnation path
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| answers | Yes | ||
| path_choice | Yes | ||
| user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"answers": {
"items": {
"type": "string"
},
"type": "array"
},
"path_choice": {
"type": "integer"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"answers",
"path_choice"
],
"type": "object"
}