Skip to content

Commit c7e66e7

Browse files
authored
feat: Update description in input_schema.json (#78)
1 parent 3d64ab6 commit c7e66e7

1 file changed

Lines changed: 33 additions & 33 deletions

File tree

.actor/input_schema.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
{
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.",
4-
"type": "object",
5-
"schemaVersion": 1,
6-
"properties": {
7-
"query": {
8-
"title": "Search term or URL",
9-
"type": "string",
10-
"description": "Enter Google Search keywords or a URL of a specific web page. The keywords might include the [advanced search operators](https://blog.apify.com/how-to-scrape-google-like-a-pro/). Examples:\n\n- <code>san francisco weather</code>\n- <code>https://www.cnn.com</code>\n- <code>function calling site:openai.com</code>",
11-
"prefill": "web browser for RAG pipelines -site:reddit.com",
12-
"editor": "textfield",
13-
"pattern": "[^\\s]+"
14-
},
15-
"maxResults": {
16-
"title": "Maximum results",
17-
"type": "integer",
18-
"description": "The maximum number of top organic Google Search results whose web pages will be extracted. If `query` is a URL, then this field is ignored and the Actor only fetches the specific web page.",
19-
"default": 3,
20-
"minimum": 1,
21-
"maximum": 100
22-
},
23-
"outputFormats": {
24-
"title": "Output formats",
25-
"type": "array",
26-
"description": "Select one or more formats to which the target web pages will be extracted and saved in the resulting dataset.",
27-
"editor": "select",
28-
"default": ["markdown"],
29-
"items": {
1+
{
2+
"title": "RAG Web Browser",
3+
"description": "Web browser for OpenAI Assistants, RAG pipelines, or AI agents, similar to a web browser in ChatGPT. It queries Google Search, scrapes the top N pages, and returns their content as Markdown for further processing by an LLM. It can also scrape individual URLs.",
4+
"type": "object",
5+
"schemaVersion": 1,
6+
"properties": {
7+
"query": {
8+
"title": "Search term or URL",
309
"type": "string",
31-
"enum": ["text", "markdown", "html"],
32-
"enumTitles": ["Plain text", "Markdown", "HTML"]
33-
}
34-
},
10+
"description": "Enter Google Search keywords or a URL of a specific web page. The keywords might include the [advanced search operators](https://blog.apify.com/how-to-scrape-google-like-a-pro/). Examples:\n\n- <code>san francisco weather</code>\n- <code>https://www.cnn.com</code>\n- <code>function calling site:openai.com</code>",
11+
"prefill": "web browser for RAG pipelines -site:reddit.com",
12+
"editor": "textfield",
13+
"pattern": "[^\\s]+"
14+
},
15+
"maxResults": {
16+
"title": "Maximum results",
17+
"type": "integer",
18+
"description": "The maximum number of top organic Google Search results whose web pages will be extracted. If `query` is a URL, then this field is ignored and the Actor only fetches the specific web page.",
19+
"default": 3,
20+
"minimum": 1,
21+
"maximum": 100
22+
},
23+
"outputFormats": {
24+
"title": "Output formats",
25+
"type": "array",
26+
"description": "Select one or more formats to which the target web pages will be extracted and saved in the resulting dataset.",
27+
"editor": "select",
28+
"default": ["markdown"],
29+
"items": {
30+
"type": "string",
31+
"enum": ["text", "markdown", "html"],
32+
"enumTitles": ["Plain text", "Markdown", "HTML"]
33+
}
34+
},
3535
"requestTimeoutSecs": {
3636
"title": "Request timeout",
3737
"type": "integer",

0 commit comments

Comments
 (0)