goalstory_create_story
Create and save a personalized story visualizing goal or step achievement. Uses user beliefs, motivations, and context to craft engaging narratives, enhancing motivation and focus.
Instructions
Generate and save a highly personalized story that visualizes achievement of the current goal/step. Uses understanding of the user's beliefs, motivations, and context to create engaging mental imagery. If context is needed, gathers it through user discussion and profile data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
goal_id | Yes | Unique identifier of the goal this story supports. | |
step_id | Yes | Unique identifier of the specific step this story visualizes. | |
story_text | Yes | Detailed narrative that vividly illustrates goal/step achievement. | |
title | Yes | Engaging headline that captures the essence of the story. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"goal_id": {
"description": "Unique identifier of the goal this story supports.",
"type": "string"
},
"step_id": {
"description": "Unique identifier of the specific step this story visualizes.",
"type": "string"
},
"story_text": {
"description": "Detailed narrative that vividly illustrates goal/step achievement.",
"type": "string"
},
"title": {
"description": "Engaging headline that captures the essence of the story.",
"type": "string"
}
},
"required": [
"goal_id",
"step_id",
"title",
"story_text"
],
"type": "object"
}