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: sources/academy/ai/ai-agents.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
-
title: Build and monetize AI Agents on Apify
3
-
description: This guide shows you how to create an AI agent using the CrewAI Python framework and Apify platform. You will build an Instagram analysis agent that integrates with large language models (LLMs) and web scrapers.
4
-
sidebar_label: AI Agents
2
+
title: Build and monetize AI agents on Apify
3
+
description: This guide shows you how to create an AI agent using the CrewAI Python framework and the Apify platform. You will build an Instagram analysis agent that integrates with large language models (LLMs) and web scrapers.
4
+
sidebar_label: Build and monetize AI agents
5
5
sidebar_position: 1
6
6
slug: /ai/ai-agents
7
7
---
8
8
9
-
**This guide shows you how to create an AI agent using the CrewAI Python framework and Apify platform. You will build an Instagram analysis agent that integrates with large language models (LLMs) and web scrapers.**
9
+
**This guide shows you how to create an AI agent using the CrewAI Python framework and the Apify platform. You will build an Instagram analysis agent that integrates with large language models (LLMs) and web scrapers.**
10
10
11
11
---
12
12
@@ -33,7 +33,7 @@ Apify provides a complete platform for building and deploying AI agents with the
33
33
34
34
### Step 1: Define the use case
35
35
36
-
This tutorial creates a social media analysis agent that analyzes Instagram posts based on user queries using the [Instagram Scraper Actor](LINK HERE).
36
+
This tutorial creates a social media analysis agent that analyzes Instagram posts based on user queries using the [Instagram Scraper Actor](https://apify.com/apify/instagram-scraper).
37
37
38
38
_Example:_
39
39
@@ -138,7 +138,7 @@ Define the dataset schema in `.actor/dataset_schema.json`. This helps structure
138
138
139
139
### Step 6: Configure tools
140
140
141
-
The Instagram post scraper tool is implemented using the [Instagram Scraper Actor](LINK HERE). The tool returns structured output as Pydantic models defined in `src/models.py`:
141
+
The Instagram post scraper tool is implemented using the [Instagram Scraper Actor](https://apify.com/apify/instagram-scraper). The tool returns structured output as Pydantic models defined in `src/models.py`:
142
142
143
143
```python
144
144
classInstagramPost(BaseModel):
@@ -299,5 +299,5 @@ To continue developing AI agents:
299
299
300
300
1._Use the CrewAI template:_ Start with `apify create agent-actor -t python-crewai`
301
301
2._Explore other templates:_ Visit the Apify templates page for alternatives
302
-
3._Review existing agents:_ Check the AI Agents collection on Apify Store
302
+
3._Review existing agents:_ Check the AI agents collection on Apify Store
303
303
4._Publish and monetize:_ Deploy with `apify push` and enable monetization
0 commit comments