Initialize the methodology extractor. Args: config: AutoFigure SDK configuration
(self, config: "Config")
| 49 | """ |
| 50 | |
| 51 | def __init__(self, config: "Config"): |
| 52 | """ |
| 53 | Initialize the methodology extractor. |
| 54 | |
| 55 | Args: |
| 56 | config: AutoFigure SDK configuration |
| 57 | """ |
| 58 | self.config = config |
| 59 | self._llm_client = None |
| 60 | |
| 61 | @property |
| 62 | def llm_client(self): |
nothing calls this directly
no outgoing calls
no test coverage detected