add_triple
Add relationships between entities to build knowledge graphs, automatically creating entities when needed.
Instructions
Add a knowledge graph triple (subject -> predicate -> object).
Entities are auto-created by name if they don't exist.
Args:
subject: The subject entity name.
predicate: The relationship predicate.
object_name: The object entity name.
Returns:
JSON string with the created triple details.Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subject | Yes | ||
| predicate | Yes | ||
| object_name | Yes |