(self, api_key: str)
| 9 | """Service for interacting with ScrapeGraphAI API.""" |
| 10 | |
| 11 | def __init__(self, api_key: str): |
| 12 | self.api_key = api_key |
| 13 | |
| 14 | async def execute_pipeline( |
| 15 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected