Check if the current node is the master node.
(self)
| 116 | self.chat_template = load_chat_template(chat_template, model) |
| 117 | |
| 118 | def _check_master(self): |
| 119 | """ |
| 120 | Check if the current node is the master node. |
| 121 | """ |
| 122 | return self.llm_engine.cfg._check_master() |
| 123 | |
| 124 | def _receive_output(self): |
| 125 | """ |