mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-16 23:01:06 +02:00
The Explore feed (/api/explore/item_list) is a global trending-video feed served to anonymous sessions, and it returns the same itemStruct shape as the other listings — so the verb reuses parse_video, the listing flow, the TikTokVideoItem output, and the per-video billing meter wholesale. Adds a browser-capture marker + fetch_trending, a synthetic-target orchestrator entry, and the tiktok.trending capability, surfaced on the chat subagent.
8 lines
436 B
Python
8 lines
436 B
Python
"""``tiktok.*`` namespace: platform-native TikTok data verbs."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from app.capabilities.tiktok.comments import definition as _comments # noqa: F401
|
|
from app.capabilities.tiktok.scrape import definition as _scrape # noqa: F401
|
|
from app.capabilities.tiktok.trending import definition as _trending # noqa: F401
|
|
from app.capabilities.tiktok.user_search import definition as _user_search # noqa: F401
|