evaluate_need_for_human
Determine if a task requires human intervention by analyzing task descriptions and model capabilities, ensuring optimal workflow between AI and human input.
Instructions
Evaluate if a task requires human intervention
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelCapabilities | No | List of model capabilities | |
taskDescription | Yes | Description of the task to be evaluated |
Input Schema (JSON Schema)
{
"properties": {
"modelCapabilities": {
"description": "List of model capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"taskDescription": {
"description": "Description of the task to be evaluated",
"type": "string"
}
},
"required": [
"taskDescription"
],
"type": "object"
}