Update Content Node
update_content_nodeUpdate a node's text and type in a content graph to reflect edits, with diff output. Verified nodes are protected from modification.
Instructions
【いつ使う】ユーザーがノードの内容(メール文言、時刻、参加者等)を変更するとき。extract_content_graphの出力graphを受け取って呼ぶ。 【入力】graph / node_id / new_text / new_type(任意)/ mark_verified(デフォルトtrue) 【出力】{ graph, changed_node_ids, diff_summary } 【注意】user_verified=trueのノードは変更を拒否する。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| graph | Yes | 現在のContentGraph(extract_content_graphの出力) | |
| node_id | Yes | 変更対象のノードID | |
| new_text | Yes | ノードの新しいテキスト | |
| new_type | No | ノードの新しい分類タイプ(任意) | |
| mark_verified | No | 変更後にuser_verified=trueとマークするか(デフォルト: true) |