You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/toolkits/others/apify.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ from agno.tools.apify import ApifyTools
34
34
agent = Agent(
35
35
tools=[
36
36
ApifyTools(
37
-
actors=["apify/rag-web-browser"], # Specify which Apify actors to use, use multiple ones if needed
37
+
actors=["apify/rag-web-browser"], # Specify which Apify Actors to use, use multiple ones if needed
38
38
apify_api_token="your_apify_api_key"# Or set the APIFY_API_TOKEN environment variable
39
39
)
40
40
],
@@ -52,7 +52,7 @@ You can easily integrate any Apify Actor as a tool, but we prepared some example
52
52
53
53
### 1. RAG Web Browser
54
54
55
-
The RAG Web Browser actor is specifically designed for AI and LLM applications. It searches the web for a query or processes a URL, then cleans and formats the content for your agent. This tool is enabled by default.
55
+
The RAG Web Browser Actor is specifically designed for AI and LLM applications. It searches the web for a query or processes a URL, then cleans and formats the content for your agent. This tool is enabled by default.
56
56
57
57
```python
58
58
from agno.agent import Agent
@@ -72,7 +72,7 @@ agent.print_response("What are the latest developments in large language models?
72
72
73
73
### 2. Website Content Crawler
74
74
75
-
This tool uses Apify's Website Content Crawler actor to extract text content from websites, making it perfect for RAG applications.
75
+
This tool uses Apify's Website Content Crawler Actor to extract text content from websites, making it perfect for RAG applications.
76
76
77
77
```python
78
78
from agno.agent import Agent
@@ -160,14 +160,14 @@ class ApifyTools(Toolkit):
160
160
self.apify_api_token = apify_api_token or os.getenv('APIFY_API_TOKEN')
0 commit comments