|
1 | 1 | {
|
2 | 2 | "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.", |
4 | 4 | "type": "object",
|
5 | 5 | "schemaVersion": 1,
|
6 | 6 | "properties": {
|
|
72 | 72 | "editor": "proxy",
|
73 | 73 | "sectionCaption": "Target pages scraping settings"
|
74 | 74 | },
|
| 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 | + }, |
75 | 84 | "removeElementsCssSelector": {
|
76 | 85 | "title": "Remove HTML elements (CSS selector)",
|
77 | 86 | "type": "string",
|
|
136 | 145 | "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.",
|
137 | 146 | "default": true
|
138 | 147 | },
|
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 |
| - }, |
148 | 148 | "debugMode": {
|
149 | 149 | "title": "Enable debug mode",
|
150 | 150 | "type": "boolean",
|
|
0 commit comments