(self)
| 29 | self.currentSession:List[Dict[str,str]] = [] |
| 30 | |
| 31 | def newSession(self) -> None: |
| 32 | self.currentSession = [] |
| 33 | |
| 34 | def sendMessages(self, message:str, GPT4=False) -> str: |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected