(self,content:str)
| 221 | def token_cost(self,convo_id: str = "default"): |
| 222 | return len(ENCODER.encode("\n".join([x["content"] for x in self.conversation[convo_id]]))) |
| 223 | def token_str(self,content:str): |
| 224 | return len(ENCODER.encode(content)) |
| 225 | def main(): |
| 226 | return |
no test coverage detected