(self, state, context)
| 37 | domain_types = [DomainType.CROSS] |
| 38 | |
| 39 | def collect(self, state, context): |
| 40 | for i, each in enumerate(context.connection.raw_data): |
| 41 | count = state.get("count", 0) |
| 42 | yield each, {"count": count + i} |
| 43 | |
| 44 | def extract(self, raw) -> ToolModel: |
| 45 | return DummyToolModel( |