summarizeWhiteboard
Generate concise summaries of Heptabase whiteboards in text or structured formats, optionally including statistics, to streamline information extraction and analysis.
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"
}