create_context
Create a new context with title, content, tags, and metadata for organizing information in the Convolut Context Bank system.
Instructions
Create a new context with title, content, tags, and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category for the context | other |
content | Yes | The main content of the context | |
files | No | File attachments for the context | |
is_favorite | No | Whether to mark the context as favorite | |
tags | No | Tags to categorize the context | |
title | Yes | The title of the context |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "other",
"description": "Category for the context",
"enum": [
"personal",
"work",
"research",
"templates",
"prompts",
"other"
],
"type": "string"
},
"content": {
"description": "The main content of the context",
"minLength": 1,
"type": "string"
},
"files": {
"description": "File attachments for the context",
"items": {
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"name",
"url",
"type"
],
"type": "object"
},
"type": "array"
},
"is_favorite": {
"default": false,
"description": "Whether to mark the context as favorite",
"type": "boolean"
},
"tags": {
"description": "Tags to categorize the context",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "The title of the context",
"maxLength": 200,
"minLength": 1,
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}