(self)
| 52 | """Simple conversation management with a list of dialog turns.""" |
| 53 | |
| 54 | def __init__(self): |
| 55 | super().__init__() |
| 56 | # Use our custom implementation instead of the original Conversation class |
| 57 | self.current_conversation = CustomConversation() |
| 58 | |
| 59 | def call(self) -> Dict: |
| 60 | """Return the conversation history as a dictionary.""" |
nothing calls this directly
no test coverage detected