Add agent component for web crawler (#2878)

### What problem does this PR solve?

Add agent component for  web crawler

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
wwwlll
2024-10-21 11:38:41 +08:00
committed by GitHub
parent c1d0473f49
commit 4bdf3fd48e
9 changed files with 152 additions and 0 deletions

View File

@@ -928,6 +928,16 @@ The above is the content you need to summarize.`,
yahooFinance: 'YahooFinance',
yahooFinanceDescription:
'The component queries information about the company based on the provided ticker symbol.',
crawler: 'Web Crawler',
crawlerDescription:
'This component can be used to crawl HTML source code from a specified URL.',
proxy: 'Proxy',
crawlerResultOptions: {
html: 'Html',
markdown: 'Markdown',
content: 'Content',
},
extractType: 'extractType',
info: 'Info',
history: 'History',
financials: 'Financials',

View File

@@ -877,6 +877,15 @@ export default {
akShareDescription: '此組件可用於從東方財富網取得對應股票的新聞資訊。',
yahooFinance: '雅虎財經',
yahooFinanceDescription: '該組件根據提供的股票代碼查詢有關公司的資訊。',
crawler: '網頁爬蟲',
crawlerDescription: '該組件可用於從指定url爬取HTML源碼。',
proxy: '代理',
crawlerResultOptions: {
html: 'Html',
markdown: 'Markdown',
content: '文本',
},
extractType: '提取類型',
info: '訊息',
history: '歷史',
financials: '財務',

View File

@@ -897,6 +897,15 @@ export default {
akShareDescription: '该组件可用于从东方财富网站获取相应股票的新闻信息。',
yahooFinance: '雅虎财经',
yahooFinanceDescription: '该组件根据提供的股票代码查询有关公司的信息。',
crawler: '网页爬虫',
crawlerDescription: '该组件可用于从指定url爬取html源码。',
proxy: '代理',
crawlerResultOptions: {
html: 'Html',
markdown: 'Markdown',
content: '文本',
},
extractType: '提取类型',
info: '信息',
history: '历史',
financials: '财务',