select_paths: Optional[List[str]] = Field(
default=None,
description='Regex patterns to select only URLs with specific path patterns.\n\n Use when the user explicitly asks for a specific path from a website.\n \n ex. "Only crawl the /api/v1 path" ---> ["/api/v1.*"] \n ex. "Only crawl the /documentation path" ---> ["/documentation/.*"]\n '
)