Skip to main content

Node - #inform_user#

  • For Xmind ChatTree, the first line of the node content must be "#inform_user#", and then the content of the second line is the inform content, which can only be a single line, such as:
    #inform_user#
    ...
  • For Python ChatTree, the first parameter of chattree.create_node() must be "#inform_user#", the key in the second parameter dict is "inform_content", and the value is the inform content (str or list[str] type), such as:
    xxx_node = chattree.create_node("#inform_user#", {"inform_content": "..."})
  • Output relevant content to the user (no need to add various modal particles in front, such as "ok", "then", etc.)
  • There can only be 1 line of inform content. For details, see "Text Output"
  • This node is included in the "TMC", "TMC_book_flights" and "first_aid_qa" ChatTree examples in "ChatTree Examples"