Extract Content Graph
extract_content_graphExtract a content graph from emails and documents to structure information into nodes and edges, enabling dependency tracing and impact analysis of edits.
Instructions
【いつ使う】社内メール・会議依頼・アジェンダ・資料のテキストを初めてグラフ化するときのみ呼ぶ。同一文書群に対して2回目以降は不要(内部でLLMを呼ぶため高コスト)。 【入力】text: メール本文、会議依頼、アジェンダ、資料の記述(最大50,000文字) 【出力】ContentGraph: { nodes: ContentNode[], edges: Edge[] }。各ノードはid/type/text/confidenceを持ち、source_docで元文書を示す。競合解釈にはgroup_idが付与される。 【注意】このgraphオブジェクトをそのまま後続の update_content_node と analyze_impact に渡すこと。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | 構造化対象のテキスト(メール、会議依頼、アジェンダ、資料、社内メモなど) |