Skip to content

Commit a4a2641

Browse files
authored
feat: Update README.md and CHANGELOG.md (#53)
1 parent 7d940f8 commit a4a2641

File tree

3 files changed

+51
-27
lines changed

3 files changed

+51
-27
lines changed

.actor/input_schema.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "RAG Web Browser",
3-
"description": "Here you can test RAG Web Browser and its settings. Just enter the search terms or URL and click *Start ▶* to get results. **In production applications, call the Actor via Standby HTTP server for fast response times.**",
3+
"description": "Here you can test RAG Web Browser and its settings. Just enter the search terms or URL and click *Start ▶* to get results. In production applications, call the Actor via Standby HTTP server for fast response times.",
44
"type": "object",
55
"schemaVersion": 1,
66
"properties": {
@@ -72,6 +72,15 @@
7272
"editor": "proxy",
7373
"sectionCaption": "Target pages scraping settings"
7474
},
75+
"scrapingTool": {
76+
"title": "Select a scraping tool",
77+
"type": "string",
78+
"description": "Select a scraping tool for extracting the target web pages. The Browser tool is more powerful and can handle JavaScript heavy websites, while the Plain HTML tool can't handle JavaScript but is about two times faster.",
79+
"editor": "select",
80+
"default": "browser-playwright",
81+
"enum": ["browser-playwright", "raw-http"],
82+
"enumTitles": ["Browser (uses Playwright)", "Raw HTTP"]
83+
},
7584
"removeElementsCssSelector": {
7685
"title": "Remove HTML elements (CSS selector)",
7786
"type": "string",
@@ -136,15 +145,6 @@
136145
"description": "If enabled, the Actor attempts to close or remove cookie consent dialogs to improve the quality of extracted text. Note that this setting increases the latency.",
137146
"default": true
138147
},
139-
"scrapingTool": {
140-
"title": "Which scraping tool to use",
141-
"type": "string",
142-
"description": "Choose what scraping tool to use for extracting the target web pages. The Browser tool is more powerful and can handle JavaScript heavy websites. While the Plain HTML tool is about two times faster.",
143-
"editor": "select",
144-
"default": "browser-playwright",
145-
"enum": ["browser-playwright", "raw-http"],
146-
"enumTitles": ["Browser (uses Playwright)", "Raw HTTP"]
147-
},
148148
"debugMode": {
149149
"title": "Enable debug mode",
150150
"type": "boolean",

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
This changelog summarizes all changes of the RAG Web Browser
22

3+
### 1.0.8 (2025-03-07)
4+
5+
🚀 Features
6+
- Add a new `scrapingTool` input to allow users to choose between Browser scraper and raw HTTP scraper
7+
8+
### 1.0.7 (2025-02-20)
9+
10+
🚀 Features
11+
- Update Readme.md to include information about MCP
12+
313
### 1.0.6 (2025-02-04)
414

515
🚀 Features

0 commit comments

Comments
 (0)