process_user_input
Process user choices to generate personalized reincarnation story paths, allowing players to become characters like vengeful spirits or fantasy heroes based on their decisions.
Instructions
Process user input and generate narrative response with options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| user_input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"type": "string"
},
"user_input": {
"type": "string"
}
},
"required": [
"user_id",
"user_input"
],
"type": "object"
}