Entity Resolution Tools
LLM-invocable tools for asserting entities and relationships into the knowledge graph.
Wraps EntityResolutionService as @LlmTool methods so an LLM agent can resolve, create, and relate entities directly.
Usage:
val tools: List<Tool> = EntityResolutionTools.asTools(entityResolutionService)
// Add to agent's tool setContent copied to clipboard
Parameters
service
The entity resolution service to delegate to
Functions
Link copied to clipboard
Assert entities into the knowledge graph with automatic resolution.
Link copied to clipboard
fun assertEntitiesAndRelationships(entities: List<EntityAssertion>, relationships: List<RelationshipAssertion>): EntityAssertionResult
Assert entities and relationships into the knowledge graph.