mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-22 23:31:12 +02:00
feat(reddit): implement Reddit scraping subagent and associated capabilities
- Added a new `reddit` subagent to scrape structured data from Reddit posts, comments, and users. - Introduced `reddit.scrape` capability for fetching data using URLs and search queries. - Implemented tools for scraping and parsing Reddit data, including handling pagination and rate limits. - Created input/output models for the Reddit scraper to define request and response structures. - Added documentation for the new Reddit scraping functionality and its usage. - Integrated the Reddit subagent into the existing multi-agent chat framework.
This commit is contained in:
parent
701f888b9e
commit
ff2e5f390f
35 changed files with 510 additions and 15 deletions
5
surfsense_backend/app/capabilities/reddit/__init__.py
Normal file
5
surfsense_backend/app/capabilities/reddit/__init__.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""``reddit.*`` namespace: platform-native Reddit data verbs."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from app.capabilities.reddit.scrape import definition as _scrape # noqa: F401
|
||||
Loading…
Add table
Add a link
Reference in a new issue