Skip to content

Commit ab0d675

Browse files
committed
docs: removed redundant tools mentioned from readme
1 parent 593dda7 commit ab0d675

1 file changed

Lines changed: 0 additions & 23 deletions

File tree

README.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ Below is a comprehensive table of all available tools, how to use them with an a
102102
| apify_run_actor | `agent.tool.apify_run_actor(actor_id="apify/website-content-crawler", run_input={"startUrls": [{"url": "https://example.com"}]})` | Run any Apify Actor with arbitrary input |
103103
| apify_scrape_url | `agent.tool.apify_scrape_url(url="https://example.com")` | Scrape a URL and return its content as markdown |
104104
| apify_google_search_scraper | `agent.tool.apify_google_search_scraper(search_query="best AI frameworks")` | Search Google and return structured results |
105-
| apify_google_places_scraper | `agent.tool.apify_google_places_scraper(search_query="restaurants in Prague")` | Search Google Maps for businesses and places |
106-
| apify_youtube_scraper | `agent.tool.apify_youtube_scraper(search_query="python tutorial")` | Scrape YouTube videos, channels, or search results |
107-
| apify_website_content_crawler | `agent.tool.apify_website_content_crawler(start_url="https://docs.example.com")` | Crawl a website and extract content from multiple pages |
108-
| apify_ecommerce_scraper | `agent.tool.apify_ecommerce_scraper(url="https://www.amazon.com/dp/B0TEST")` | Scrape product data from e-commerce websites |
109105
| file_read | `agent.tool.file_read(path="path/to/file.txt")` | Reading configuration files, parsing code files, loading datasets |
110106
| file_write | `agent.tool.file_write(path="path/to/file.txt", content="file content")` | Writing results to files, creating new files, saving output data |
111107
| editor | `agent.tool.editor(command="view", path="path/to/file.py")` | Advanced file operations like syntax highlighting, pattern replacement, and multi-file edits |
@@ -1013,25 +1009,6 @@ results = agent.tool.apify_google_search_scraper(
10131009
results_limit=10,
10141010
)
10151011

1016-
# Search Google Maps for places
1017-
places = agent.tool.apify_google_places_scraper(
1018-
search_query="restaurants in Prague",
1019-
include_reviews=True,
1020-
)
1021-
1022-
# Scrape YouTube
1023-
videos = agent.tool.apify_youtube_scraper(search_query="python tutorial")
1024-
1025-
# Crawl a website (multi-page)
1026-
pages = agent.tool.apify_website_content_crawler(
1027-
start_url="https://docs.example.com",
1028-
max_pages=20,
1029-
)
1030-
1031-
# Scrape e-commerce product data
1032-
products = agent.tool.apify_ecommerce_scraper(
1033-
url="https://www.amazon.com/dp/B0TEST",
1034-
)
10351012
```
10361013

10371014
## 🌍 Environment Variables Configuration

0 commit comments

Comments
 (0)