mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-08 22:22:17 +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>
25 lines
1 KiB
Python
25 lines
1 KiB
Python
"""``youtube.scrape`` capability registration (billed per video; see config
|
|
``YOUTUBE_MICROS_PER_VIDEO``)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from app.capabilities.core import BillingUnit, Capability, register_capability
|
|
from app.capabilities.youtube.scrape.executor import build_scrape_executor
|
|
from app.capabilities.youtube.scrape.schemas import ScrapeInput, ScrapeOutput
|
|
|
|
YOUTUBE_SCRAPE = Capability(
|
|
name="youtube.scrape",
|
|
description=(
|
|
"Scrape public YouTube data. Give it YouTube URLs (video, channel, "
|
|
"playlist, shorts, or hashtag) and/or search queries, and it returns "
|
|
"structured video items — title, views, likes, publish date, channel "
|
|
"info, description, and optionally subtitles. Use search_queries to "
|
|
"discover videos, or urls to pull a known video/channel/playlist."
|
|
),
|
|
input_schema=ScrapeInput,
|
|
output_schema=ScrapeOutput,
|
|
executor=build_scrape_executor(),
|
|
billing_unit=BillingUnit.YOUTUBE_VIDEO,
|
|
)
|
|
|
|
register_capability(YOUTUBE_SCRAPE)
|