Entity Assertion Request
data class EntityAssertionRequest(val entities: List<EntityAssertion>, val relationships: List<RelationshipAssertion> = emptyList())
Request to assert entities and relationships into the knowledge graph.
Entities are resolved against existing graph data using the full escalation chain (exact match → heuristic → vector → LLM). New entities are created; existing entities are updated with merged labels/properties.
Parameters
entities
Entities to resolve and persist
relationships
Relationships to create between resolved entities
Constructors
Link copied to clipboard
constructor(entities: List<EntityAssertion>, relationships: List<RelationshipAssertion> = emptyList())