predict_next_action
Anticipate the next likely action by analyzing context and previous actions. Ideal for enhancing decision-making and streamlining workflows in autonomous systems.
Instructions
Predict the next likely action based on context
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| context | No | ||
| previousActions | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "context": {
      "type": "object"
    },
    "previousActions": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}