get_grounding_information
Extract central topics and selected subtopics from a mind map to gain structured grounding information. Configure detail levels or enable text-only mode for specific insights.
Instructions
Extracts grounding information (central topic, selected subtopics) from the mindmap.
Args:
mode (str): Detail level ('full', 'content', 'text'). Defaults to 'full'.
turbo_mode (bool): Enable turbo mode (text only). Defaults to False.
Returns:
Union[List[str], Dict[str, str]]: A list containing [top_most_topic, subtopics_string] or error dictionary.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | No | full | |
turbo_mode | No |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"default": "full",
"title": "Mode",
"type": "string"
},
"turbo_mode": {
"default": false,
"title": "Turbo Mode",
"type": "boolean"
}
},
"title": "get_grounding_informationArguments",
"type": "object"
}