MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / AgentState

Class AgentState

backend/app/agents/scraping_agent.py:18–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16from app.services.scrapegraph import ScrapingService
17
18class AgentState(TypedDict):
19 messages: Annotated[List[BaseMessage], add_messages]
20 pipeline_id: str
21 urls: List[str]
22 schema: Dict[str, Any]
23 generated_code: str
24 execution_results: List[Dict]
25 current_status: str
26 error: Optional[str]
27
28class ScrapingAgent:
29 def __init__(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected