summarizeWhiteboard
Extract and condense content from Heptabase whiteboards into text or structured formats, optionally including statistics for efficient analysis and review.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | text | |
includeStatistics | No | ||
whiteboardId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "text",
"enum": [
"text",
"structured"
],
"type": "string"
},
"includeStatistics": {
"default": false,
"type": "boolean"
},
"whiteboardId": {
"type": "string"
}
},
"required": [
"whiteboardId"
],
"type": "object"
}