kb_import
Import structured knowledge base data from JSON to enable AI agents to maintain persistent context and long-term memory across sessions.
Instructions
Import knowledge base from JSON string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | JSON string of knowledge base data |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "JSON string of knowledge base data",
"type": "string"
}
},
"required": [
"data"
],
"type": "object"
}