Skip to content

Commit b1bc08a

Browse files
committed
Configuration better readability and Alternative LLM providers
1 parent 9d8c38d commit b1bc08a

File tree

1 file changed

+17
-8
lines changed
  • sources/platform/integrations/ai

1 file changed

+17
-8
lines changed

sources/platform/integrations/ai/agno.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,29 @@ Check out the [Agno documentation](https://docs.agno.com/introduction) for more
2020

2121
:::
2222

23-
## How to Use Apify with Agno
23+
## How to use Apify with Agno
2424

2525
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).
2626

2727
### Prerequisites
2828

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+
3038
- _Python environment_: Ensure Python is installed (version 3.8+ recommended).
3139
- _Required packages_: Install the following dependencies in your terminal:
3240

3341
```bash
3442
pip install agno apify-client
3543
```
3644

37-
## Basic Integration Example
45+
## Basic integration example
3846

3947
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.
4048

@@ -119,12 +127,13 @@ Browse the [Apify Store](https://apify.com/store) to find additional Actors for
119127

120128
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.
121129

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)
123134

124-
| Parameter | Type | Default | Description |
125-
| ---------------------------- | ------------------- | ------- | ------------------------------------------------------------------ |
126-
| `apify_api_token` | `str` | `None` | Apify API token (or set via APIFY_API_TOKEN environment variable) |
127-
| `actors` | `str` or `List[str]`| `None` | Single Actor ID or list of Actor IDs to register |
135+
**`actors`** (string or List[string], default: `None`)
136+
: Single Actor ID or list of Actor IDs to register
128137

129138
## Resources
130139

0 commit comments

Comments
 (0)