feat: add web scraping tool to chat agent for extracting and summarizing webpage content

This commit is contained in:
Anish Sarkar 2025-12-23 01:49:29 +05:30
parent da7cb81252
commit 24dd52ed99
9 changed files with 1018 additions and 76 deletions

View file

@ -46,3 +46,17 @@ export {
type DisplayImageArgs,
type DisplayImageResult,
} from "./display-image";
export {
Article,
ArticleErrorBoundary,
ArticleLoading,
ArticleSkeleton,
parseSerializableArticle,
type ArticleProps,
type SerializableArticle,
} from "./article";
export {
ScrapeWebpageToolUI,
type ScrapeWebpageArgs,
type ScrapeWebpageResult,
} from "./scrape-webpage";