export_knowledge
Transfer structured AI thinking states and PDF knowledge by exporting them to a file for use on another server. Specify the export path to save the data.
Instructions
Export the current thinking state and PDF knowledge to a file for transfer to another server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exportPath | Yes | Absolute path where to save the exported knowledge file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exportPath": {
"description": "Absolute path where to save the exported knowledge file",
"type": "string"
}
},
"required": [
"exportPath"
],
"type": "object"
}