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/platform/integrations/ai/agno.md
+17-8Lines changed: 17 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,21 +20,29 @@ Check out the [Agno documentation](https://docs.agno.com/introduction) for more
20
20
21
21
:::
22
22
23
-
## How to Use Apify with Agno
23
+
## How to use Apify with Agno
24
24
25
25
This guide shows how to integrate Apify Actors with Agno to empower your AI agents with real-time web data. We'll use the [RAG Web Browser](https://apify.com/apify/rag-web-browser) Actor to fetch web content and the [Google Places Crawler](https://apify.com/compass/crawler-google-places) Actor to extract location-based data. It is very easy to use with any other Actor by just passing the name of the Actor. See and choose from thousands of Actors in the [Apify Store](https://apify.com/store).
26
26
27
27
### Prerequisites
28
28
29
-
-_Apify API token_: Obtain your token from the [Apify console](https://console.apify.com/account/integrations).
29
+
-_Apify API token_: Obtain your API token from the [Apify console](https://console.apify.com/account/integrations).
30
+
-_OpenAI API key_: Get your API key from the [OpenAI platform](https://platform.openai.com/account/api-keys).
31
+
32
+
:::tip Alternative LLM providers
33
+
34
+
While our examples use OpenAI, Agno supports other LLM providers as well. You'll need to adjust the environment variables and configuration according to your chosen provider. Check out the [Agno models documentation](https://docs.agno.com/models/introduction) for details on supported providers and configuration.
35
+
36
+
:::
37
+
30
38
-_Python environment_: Ensure Python is installed (version 3.8+ recommended).
31
39
-_Required packages_: Install the following dependencies in your terminal:
32
40
33
41
```bash
34
42
pip install agno apify-client
35
43
```
36
44
37
-
## Basic Integration Example
45
+
## Basic integration example
38
46
39
47
Start by setting up an Agno agent with Apify tools. This example uses the RAG Web Browser Actor to extract content from a specific URL.
40
48
@@ -119,12 +127,13 @@ Browse the [Apify Store](https://apify.com/store) to find additional Actors for
119
127
120
128
Agno supports any Apify Actor via the ApifyTools class. You can specify a single Actor ID or a list of Actor IDs to register multiple tools for your agent at once.
121
129
122
-
## Configuration Options
130
+
## Configuration options
131
+
132
+
**`apify_api_token`** (string, default: `None`)
133
+
: Apify API token (or set via APIFY_API_TOKEN environment variable)
0 commit comments