get_context
Retrieve specific context content and metadata from Convolut Context Bank using its unique identifier to access stored information for AI-powered operations.
Instructions
Retrieve a specific context by its ID, including full content and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_id | Yes | The unique identifier of the context to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"context_id": {
"description": "The unique identifier of the context to retrieve",
"format": "uuid",
"type": "string"
}
},
"required": [
"context_id"
],
"type": "object"
}