remember_consult
Store consultation results from local AI models into memory for future reference and retrieval.
Instructions
Store the result of a consult into a local memory store (or configured memory service).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | ||
| prompt | Yes | ||
| model | No | ||
| response | No |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"type": "string"
},
"model": {
"type": "string"
},
"prompt": {
"type": "string"
},
"response": {
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}