ingest_knowledge
Store extracted entities and relations into a knowledge graph to organize and merge information for later querying.
Instructions
지식을 그래프에 저장합니다. Claude가 추출한 Entity/Relation JSON을 받습니다.
Args: raw_text: 사용자가 입력한 원본 텍스트 (로그용) entities: JSON 배열. 예: [{"name": "서버", "category": "network", "description": "클라이언트에게 서비스를 제공하는 컴퓨터", "aliases": ["Server"], "properties": {}}] relations: JSON 배열. 예: [{"source": "서버", "target": "클라이언트", "relation": "serves", "description": "서비스 제공 관계"}]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| raw_text | Yes | ||
| entities | Yes | ||
| relations | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |