(self)
| 28 | self.length = len(self.conversations) |
| 29 | |
| 30 | def num_examples(self): |
| 31 | return self.length |
| 32 | |
| 33 | def get_example(self, index): |
| 34 | return {"messages": self.conversations[index]} |
nothing calls this directly
no outgoing calls
no test coverage detected