(self)
| 15 | self.current_query = current_query |
| 16 | |
| 17 | def __str__(self): |
| 18 | return f"System: {self.system_prompt}\nHistory: {self.conversation_history}\nCurrent Query: {self.current_query}" |
| 19 | |
| 20 | class MCTSNode: |
| 21 | def __init__(self, state: DialogueState, parent=None): |
nothing calls this directly
no outgoing calls
no test coverage detected