Skip to content

Commit 36148d8

Browse files
committed
Apply comment suggestions
1 parent f624111 commit 36148d8

File tree

2 files changed

+13
-9
lines changed
  • .github/styles/config/vocabularies/Docs
  • sources/platform/integrations/ai

2 files changed

+13
-9
lines changed

.github/styles/config/vocabularies/Docs/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,4 @@ upvote
119119
walkthroughs?
120120

121121
ul
122+
Agno

sources/platform/integrations/ai/agno.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,19 @@ slug: /integrations/agno
1414

1515
[Agno](https://docs.agno.com/) is an open-source framework for building intelligent AI agents. It provides a flexible architecture to create agents with custom tools, enabling seamless integration with external services like Apify for tasks such as web scraping, data extraction and automation.
1616

17-
> [!NOTE]
18-
> Check out the [Agno documentation](https://docs.agno.com/introduction) for more details on building AI agents.
17+
:::note
18+
Check out the [Agno documentation](https://docs.agno.com/introduction) for more details on building AI agents.
19+
:::
1920

2021
## How to Use Apify with Agno
2122

2223
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).
2324

2425
### Prerequisites
2526

26-
- **Apify API token**: Obtain your token from the [Apify console](https://console.apify.com/account/integrations).
27-
- **Python environment**: Ensure Python is installed (version 3.8+ recommended).
28-
- **Required packages**: Install the following dependencies in your terminal:
27+
- *Apify API token*: Obtain your token from the [Apify console](https://console.apify.com/account/integrations).
28+
- *Python environment*: Ensure Python is installed (version 3.8+ recommended).
29+
- *Required packages*: Install the following dependencies in your terminal:
2930

3031
```bash
3132
pip install agno apify-client langchain-apify
@@ -57,8 +58,9 @@ agent.print_response("Extract key details from https://docs.agno.com/introductio
5758

5859
Running this code will scrape the specified URL and return formatted content your agent can use.
5960

60-
> [!TIP]
61-
> You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code.
61+
:::tip
62+
You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code.
63+
:::
6264

6365
### Advanced Scenario: Travel Planning Agent
6466

@@ -105,8 +107,9 @@ This agent will fetch travel-related data and restaurant recommendations, provid
105107
2. Use the Google Places Crawler to find a top sushi restaurant.
106108
3. Combine the results into a comprehensive guide.
107109

108-
> [!TIP]
109-
> Browse the [Apify Store](https://apify.com/store) to find additional Actors for tasks like social media scraping, e-commerce data extraction, or news aggregation.
110+
:::tip
111+
Browse the [Apify Store](https://apify.com/store) to find additional Actors for tasks like social media scraping, e-commerce data extraction, or news aggregation.
112+
:::
110113

111114
### Available Apify Tools
112115

0 commit comments

Comments
 (0)