create_entity
Add a new entity to the knowledge graph with defined name and type, optionally including initial observations, to manage Infrastructure-as-Code components 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"
}