check_research_saturation
Assess research completeness on a specific topic and pinpoint gaps by analyzing consulted sources for further exploration.
Instructions
Evaluate research completeness and identify gaps
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sources | No | List of sources already consulted | |
topic | Yes | Research topic to evaluate |
Input Schema (JSON Schema)
{
"properties": {
"sources": {
"description": "List of sources already consulted",
"items": {
"type": "string"
},
"type": "array"
},
"topic": {
"description": "Research topic to evaluate",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}