(self, state, context)
| 84 | return f'_raw_{self.plugin_name}_{self.name}' |
| 85 | |
| 86 | def collect(self, state, context) -> Iterable[tuple[object, dict]]: |
| 87 | pass |
| 88 | |
| 89 | def extract(self, raw_data: dict) -> ToolModel: |
| 90 | return autoextract(raw_data, self.tool_model) |