Initialize AutoFigureAgent. Args: config: AutoFigure configuration
(self, config: Config)
| 68 | """ |
| 69 | |
| 70 | def __init__(self, config: Config): |
| 71 | """ |
| 72 | Initialize AutoFigureAgent. |
| 73 | |
| 74 | Args: |
| 75 | config: AutoFigure configuration |
| 76 | """ |
| 77 | self.config = config |
| 78 | self._extractor = None |
| 79 | self._enhancer = None |
| 80 | |
| 81 | # Validate configuration |
| 82 | errors = config.validate() |
| 83 | if errors: |
| 84 | print(f"[AutoFigureAgent] Configuration warnings: {errors}") |
| 85 | |
| 86 | # Update generator CONFIG from SDK config |
| 87 | update_config_from_sdk(config) |
| 88 | |
| 89 | @property |
| 90 | def extractor(self) -> MethodologyExtractor: |
nothing calls this directly
no test coverage detected