amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 7)
9d2d895 verified
Raw
History Blame Contribute Delete
656 Bytes
/**
* Unified news service module.
*
* RSS feed parsing stays client-side (requires DOMParser).
* Summarization stays via existing edge functions (Groq/OpenRouter).
* This module re-exports from the legacy files and will migrate
* to sebuf RPCs as those handlers get implemented.
*/
// RSS feed fetching (client-side with DOMParser)
export { fetchFeed, fetchCategoryFeeds, getFeedFailures } from '../rss';
// Summarization (client-side with Groq/OpenRouter/Browser T5 fallback)
export { generateSummary, translateText } from '../summarization';
export type { SummarizationResult, SummarizationProvider, ProgressCallback } from '../summarization';