(self)
| 4 | |
| 5 | class SimpleScrapingAgent: |
| 6 | def __init__(self): |
| 7 | self.scraping_service = ScrapingService(settings.SCRAPEGRAPH_API_KEY) |
| 8 | self.pipelines = {} |
| 9 | |
| 10 | async def process_message(self, message: str, pipeline_id: str, context: Dict = None) -> Dict: |
| 11 | """Process a user message and return the response.""" |
nothing calls this directly
no test coverage detected