mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-10 22:32:16 +02:00
Add per-item, per-platform billing for the platform-native connectors (Reddit, Google Search, Google Maps places/reviews, YouTube videos/comments) through the capability gate/charge seam. Rates are config-driven with a shared wallet-credit module (wallet_credit) and a dedicated PlatformScrapeCreditService; agent and REST capability runs now record cost_micros. Google Maps scrape dual-meters places and attached reviews. Remove the main-agent scrape_webpage tool now that the web.crawl capability covers single-page (maxCrawlDepth=0) and site crawling. The main agent now reaches crawling via task(web_crawler, ...). Update prompts, tool catalog, receipts, skills, proprietary docs, and tests; drop the obsolete chat-turn crawl fold path. Co-authored-by: Cursor <cursoragent@cursor.com>
82 lines
2.8 KiB
Python
82 lines
2.8 KiB
Python
"""``youtube.scrape`` I/O contracts.
|
|
|
|
A lean, agent-friendly surface over ``YouTubeScrapeInput``
|
|
(``app/proprietary/platforms/youtube``). The executor maps this to the full
|
|
scraper input; the scraper's ``VideoItem`` is reused verbatim as the output
|
|
element.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pydantic import BaseModel, Field, model_validator
|
|
|
|
from app.proprietary.platforms.youtube import VideoItem
|
|
|
|
MAX_YOUTUBE_SOURCES = 20
|
|
"""Per-call cap on URLs + queries: bounds a synchronous request's fan-out (05)."""
|
|
|
|
|
|
class ScrapeInput(BaseModel):
|
|
urls: list[str] = Field(
|
|
default_factory=list,
|
|
max_length=MAX_YOUTUBE_SOURCES,
|
|
description=(
|
|
"YouTube URLs to scrape: video, channel (/@handle or /channel/UC...), "
|
|
"playlist (?list=...), shorts, or hashtag pages. Provide these OR "
|
|
"search_queries (at least one is required)."
|
|
),
|
|
)
|
|
search_queries: list[str] = Field(
|
|
default_factory=list,
|
|
max_length=MAX_YOUTUBE_SOURCES,
|
|
description=(
|
|
"Search terms to run on YouTube; each returns up to max_results videos. "
|
|
"Provide these OR urls (at least one is required)."
|
|
),
|
|
)
|
|
max_results: int = Field(
|
|
default=10,
|
|
ge=1,
|
|
le=1000,
|
|
description=(
|
|
"Max items to return per source and per content type (videos, shorts, "
|
|
"streams are capped independently for a channel)."
|
|
),
|
|
)
|
|
download_subtitles: bool = Field(
|
|
default=False,
|
|
description="Also fetch each video's subtitle track (slower; more requests).",
|
|
)
|
|
subtitles_language: str = Field(
|
|
default="en",
|
|
description="Subtitle language code (e.g. 'en', 'fr'). Used when download_subtitles is true.",
|
|
)
|
|
|
|
@model_validator(mode="after")
|
|
def _require_a_source(self) -> ScrapeInput:
|
|
if not self.urls and not self.search_queries:
|
|
raise ValueError("Provide at least one of 'urls' or 'search_queries'.")
|
|
return self
|
|
|
|
@property
|
|
def estimated_units(self) -> int:
|
|
"""Worst-case billable videos for the pre-flight gate.
|
|
|
|
The x3 is load-bearing: for a channel source ``max_results`` caps
|
|
videos, shorts, and streams *independently*, so one source can return
|
|
up to 3x ``max_results`` items. Over-reserving here keeps the
|
|
never-go-negative invariant a passing gate promises.
|
|
"""
|
|
return (len(self.urls) + len(self.search_queries)) * self.max_results * 3
|
|
|
|
|
|
class ScrapeOutput(BaseModel):
|
|
items: list[VideoItem] = Field(
|
|
default_factory=list,
|
|
description="One video item per result, in the scraper's emission order.",
|
|
)
|
|
|
|
@property
|
|
def billable_units(self) -> int:
|
|
"""One returned video/short/stream = one billable unit."""
|
|
return len(self.items)
|