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

Class Intent

backend/app/agents/unified_agent.py:34–40  ·  view source on GitHub ↗

Analyzed user intent.

Source from the content-addressed store, hash-verified

32
33
34class Intent(BaseModel):
35 """Analyzed user intent."""
36 primary_intent: str # add_urls, define_schema, generate_code, run_pipeline, ask_question, reuse_pipeline
37 confidence: float = 0.0
38 entities: Dict[str, Any] = Field(default_factory=dict)
39 suggested_actions: List[str] = Field(default_factory=list)
40 similar_pipelines: List[str] = Field(default_factory=list)
41
42
43class UnifiedScrapingAgent:

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected