Inject a tool message into conversation history.
(self, message)
| 57 | self.conversation_history.append(message) |
| 58 | |
| 59 | def inject_tool_message(self, message): |
| 60 | """Inject a tool message into conversation history.""" |
| 61 | self.conversation_history.append(message) |
| 62 | |
| 63 | |
| 64 | class TestConversationProcessorInit: |
no outgoing calls
no test coverage detected