Check if a node type exists in the node list. Args: node_type: Node type name to check Returns: True if node exists, False otherwise
(self, node_type: str)
| 183 | return similar_node_infos |
| 184 | |
| 185 | def not_in_sql(self, node_type: str) -> bool: |
| 186 | """ |
| 187 | Check if a node type exists in the node list. |
| 188 | |
| 189 | Args: |
| 190 | node_type: Node type name to check |
| 191 | |
| 192 | Returns: |
| 193 | True if node exists, False otherwise |
| 194 | """ |
| 195 | return node_type in self.node_list |
| 196 | |
| 197 | def is_valid_comfy_node(self, node_type: str) -> bool: |
| 198 | """ |