create_entity
Adds a new entity to a knowledge graph with specified name and type, optionally including an initial observation, for managing Infrastructure-as-Code information efficiently.
Instructions
Create a new entity in the knowledge graph with optional initial observations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Entity name | |
observation | No | Initial observation | |
type | Yes | Entity type |
Input Schema (JSON Schema)
{
"description": "Create a new entity in the knowledge graph with optional initial observations",
"properties": {
"name": {
"description": "Entity name",
"type": "string"
},
"observation": {
"description": "Initial observation",
"type": "string"
},
"type": {
"description": "Entity type",
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}