Skip to content

Commit e5f2bb3

Browse files
ohlavaMQ37
andcommitted
Actor with big A
Co-authored-by: Jakub Kopecký <[email protected]>
1 parent b4a1693 commit e5f2bb3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/toolkits/others/apify.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ from agno.tools.apify import ApifyTools
3434
agent = Agent(
3535
tools=[
3636
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
3838
apify_api_token="your_apify_api_key" # Or set the APIFY_API_TOKEN environment variable
3939
)
4040
],
@@ -52,7 +52,7 @@ You can easily integrate any Apify Actor as a tool, but we prepared some example
5252

5353
### 1. RAG Web Browser
5454

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.
5656

5757
```python
5858
from agno.agent import Agent
@@ -72,7 +72,7 @@ agent.print_response("What are the latest developments in large language models?
7272

7373
### 2. Website Content Crawler
7474

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.
7676

7777
```python
7878
from agno.agent import Agent
@@ -160,14 +160,14 @@ class ApifyTools(Toolkit):
160160
self.apify_api_token = apify_api_token or os.getenv('APIFY_API_TOKEN')
161161
self.client = ApifyClient(self.apify_api_token)
162162

163-
# Register specific actors if provided
163+
# Register specific Actors if provided
164164
if actors:
165165
actor_list = [actors] if isinstance(actors, str) else actors
166166
for actor_id in actor_list:
167167
self.register_actor(actor_id)
168168

169169
def register_actor(self, actor_id: str) -> None:
170-
# Register an Apify actor as a function in the toolkit
170+
# Register an Apify Actor as a function in the toolkit
171171
# Implementation details...
172172
```
173173

@@ -176,7 +176,7 @@ class ApifyTools(Toolkit):
176176
| Parameter | Type | Default | Description |
177177
| ---------------------------- | ------------------- | ------- | ------------------------------------------------------------------ |
178178
| `apify_api_token` | `str` | `None` | Apify API token (or set via APIFY_API_TOKEN environment variable) |
179-
| `actors` | `str` or `List[str]`| `None` | Single actor ID or list of actor IDs to register |
179+
| `actors` | `str` or `List[str]`| `None` | Single Actor ID or list of Actor IDs to register |
180180

181181
## Developer Resources
182182

0 commit comments

Comments
 (0)