From e62e777315463b72a4beb62cdce7edff91aff806 Mon Sep 17 00:00:00 2001 From: ohlava Date: Thu, 10 Apr 2025 18:33:36 +0200 Subject: [PATCH 01/11] feat(integrations): add Agno integration docs --- sources/platform/integrations/ai/agno.md | 128 +++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 sources/platform/integrations/ai/agno.md diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md new file mode 100644 index 0000000000..cba9a79eb9 --- /dev/null +++ b/sources/platform/integrations/ai/agno.md @@ -0,0 +1,128 @@ +--- +title: Agno Integration +sidebar_label: Agno +description: Integrate Apify with Agno to power AI agents with web scraping, automation, and data insights. +sidebar_position: 1 +slug: /integrations/agno +--- + +**Integrate Apify with Agno to power AI agents with web scraping, automation, and data insights.** + +--- + +## What is Agno? + +[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. + +> [!NOTE] +> Check out the [Agno documentation](https://docs.agno.com/introduction) for more details on building AI agents. + +## How to Use Apify with Agno + +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 4,000+ Actors in the [Apify Store](https://apify.com/store). + +### Prerequisites + +- **Apify API token**: Obtain your token from the [Apify console](https://console.apify.com/account/integrations). +- **Python environment**: Ensure Python is installed (version 3.8+ recommended). +- **Required packages**: Install the following dependencies in your terminal: + +```bash +pip install agno apify-client langchain-apify +``` + +## Basic Integration Example + +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. + +```python +from agno.agent import Agent +from agno.tools.apify import ApifyTools + +# Initialize the agent with Apify tools +agent = Agent( + tools=[ + ApifyTools( + actors=["apify/rag-web-browser"], + apify_api_token="YOUR_APIFY_API_TOKEN" # Replace YOUR_APIFY_API_TOKEN with your token + ) + ], + show_tool_calls=True, + markdown=True +) + +# Fetch and display web content +agent.print_response("Extract key details from https://docs.agno.com/introduction", markdown=True) +``` + +Running this code will scrape the specified URL and return formatted content your agent can use. + +> [!TIP] +> You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code. + +### Advanced Scenario: Travel Planning Agent + +Combine multiple Apify Actors to create a powerful travel planning agent. This example uses the RAG Web Browser and Google Places Crawler to gather travel insights and local business data. + +```python +from agno.agent import Agent +from agno.tools.apify import ApifyTools + +# Create a travel planning agent +agent = Agent( + name="Travel Planner", + instructions=[ + "You are a travel planning assistant. Use web data and location insights to provide detailed travel recommendations." + ], + tools=[ + ApifyTools( + actors=[ + "apify/rag-web-browser", # For general web research + "compass/crawler-google-places" # For location-based data + ], + apify_api_token="YOUR_APIFY_API_TOKEN" + ) + ], + show_tool_calls=True, + markdown=True +) + +# Plan a trip to Tokyo +agent.print_response( + """ + I'm traveling to Tokyo next month. + 1. Research the best time to visit and top attractions. + 2. Find a highly rated sushi restaurant near Shinjuku. + Compile a travel guide with this information. + """, + markdown=True +) +``` + +This agent will fetch travel-related data and restaurant recommendations, providing a comprehensive travel guide: + +1. Use the RAG Web Browser to research Tokyo travel details. +2. Use the Google Places Crawler to find a top sushi restaurant. +3. Combine the results into a comprehensive guide. + +> [!TIP] +> 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. + +### Available Apify Tools + +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. + +## Configuration Options + +| Parameter | Type | Default | Description | +| ---------------------------- | ------------------- | ------- | ------------------------------------------------------------------ | +| `apify_api_token` | `str` | `None` | Apify API token (or set via APIFY_API_TOKEN environment variable) | +| `actors` | `str` or `List[str]`| `None` | Single Actor ID or list of Actor IDs to register | + +## Resources + +- [How to build an AI Agent](https://blog.apify.com/how-to-build-an-ai-agent/) +- [Agno Framework Documentation](https://docs.agno.com) +- [Apify Platform Documentation](https://docs.apify.com) +- [Apify Actor Documentation](https://docs.apify.com/actors) +- [Apify Store - Browse available Actors](https://apify.com/store) \ No newline at end of file From 1f768ee9a8b54785cb097f092983ceb0028db626 Mon Sep 17 00:00:00 2001 From: ohlava Date: Thu, 17 Apr 2025 10:24:34 +0200 Subject: [PATCH 02/11] Apply lint:md fix --- sources/platform/integrations/ai/agno.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index cba9a79eb9..f568695bcc 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -125,4 +125,4 @@ Agno supports any Apify Actor via the ApifyTools class. You can specify a single - [Agno Framework Documentation](https://docs.agno.com) - [Apify Platform Documentation](https://docs.apify.com) - [Apify Actor Documentation](https://docs.apify.com/actors) -- [Apify Store - Browse available Actors](https://apify.com/store) \ No newline at end of file +- [Apify Store - Browse available Actors](https://apify.com/store) From f624111c7eacd755eba40b3c2b5528b79346dd64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= <73562907+ohlava@users.noreply.github.com> Date: Mon, 28 Apr 2025 22:44:35 +0200 Subject: [PATCH 03/11] Update sources/platform/integrations/ai/agno.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michał Olender <92638966+TC-MO@users.noreply.github.com> --- sources/platform/integrations/ai/agno.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index f568695bcc..582b62f169 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -19,7 +19,7 @@ slug: /integrations/agno ## How to Use Apify with Agno -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 4,000+ Actors in the [Apify Store](https://apify.com/store). +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). ### Prerequisites From 36148d85feb9bbc5dfd4d685658be0d4677a4eba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= Date: Mon, 28 Apr 2025 23:05:31 +0200 Subject: [PATCH 04/11] Apply comment suggestions --- .../config/vocabularies/Docs/accept.txt | 1 + sources/platform/integrations/ai/agno.md | 21 +++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/styles/config/vocabularies/Docs/accept.txt b/.github/styles/config/vocabularies/Docs/accept.txt index 6408eeae72..8ec002f86c 100644 --- a/.github/styles/config/vocabularies/Docs/accept.txt +++ b/.github/styles/config/vocabularies/Docs/accept.txt @@ -119,3 +119,4 @@ upvote walkthroughs? ul +Agno diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index 582b62f169..4f4b72a330 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -14,8 +14,9 @@ slug: /integrations/agno [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. -> [!NOTE] -> Check out the [Agno documentation](https://docs.agno.com/introduction) for more details on building AI agents. +:::note +Check out the [Agno documentation](https://docs.agno.com/introduction) for more details on building AI agents. +::: ## How to Use Apify with Agno @@ -23,9 +24,9 @@ This guide shows how to integrate Apify Actors with Agno to empower your AI agen ### Prerequisites -- **Apify API token**: Obtain your token from the [Apify console](https://console.apify.com/account/integrations). -- **Python environment**: Ensure Python is installed (version 3.8+ recommended). -- **Required packages**: Install the following dependencies in your terminal: +- *Apify API token*: Obtain your token from the [Apify console](https://console.apify.com/account/integrations). +- *Python environment*: Ensure Python is installed (version 3.8+ recommended). +- *Required packages*: Install the following dependencies in your terminal: ```bash pip install agno apify-client langchain-apify @@ -57,8 +58,9 @@ agent.print_response("Extract key details from https://docs.agno.com/introductio Running this code will scrape the specified URL and return formatted content your agent can use. -> [!TIP] -> You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code. +:::tip +You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code. +::: ### Advanced Scenario: Travel Planning Agent @@ -105,8 +107,9 @@ This agent will fetch travel-related data and restaurant recommendations, provid 2. Use the Google Places Crawler to find a top sushi restaurant. 3. Combine the results into a comprehensive guide. -> [!TIP] -> 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. +:::tip +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. +::: ### Available Apify Tools From cfd4b9de8956fb471bac28363742efc432f82004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= <73562907+ohlava@users.noreply.github.com> Date: Tue, 29 Apr 2025 10:10:00 +0200 Subject: [PATCH 05/11] Apply style changes for :::notes etc. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michał Olender <92638966+TC-MO@users.noreply.github.com> --- sources/platform/integrations/ai/agno.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index 4f4b72a330..3f7ee233c9 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -14,8 +14,10 @@ slug: /integrations/agno [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. -:::note +:::note Agno documentation + Check out the [Agno documentation](https://docs.agno.com/introduction) for more details on building AI agents. + ::: ## How to Use Apify with Agno @@ -58,8 +60,10 @@ agent.print_response("Extract key details from https://docs.agno.com/introductio Running this code will scrape the specified URL and return formatted content your agent can use. -:::tip +:::tip Environment variable token + You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code. + ::: ### Advanced Scenario: Travel Planning Agent @@ -107,8 +111,10 @@ This agent will fetch travel-related data and restaurant recommendations, provid 2. Use the Google Places Crawler to find a top sushi restaurant. 3. Combine the results into a comprehensive guide. -:::tip +:::tip Apify Store + 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. + ::: ### Available Apify Tools From abc37be859b474bcb0be2c9ba509df3272e392f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= <73562907+ohlava@users.noreply.github.com> Date: Tue, 29 Apr 2025 10:16:08 +0200 Subject: [PATCH 06/11] Update sidebar position --- .github/styles/config/vocabularies/Docs/accept.txt | 2 +- sources/platform/integrations/ai/agno.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/styles/config/vocabularies/Docs/accept.txt b/.github/styles/config/vocabularies/Docs/accept.txt index 8ec002f86c..be2f09bcc3 100644 --- a/.github/styles/config/vocabularies/Docs/accept.txt +++ b/.github/styles/config/vocabularies/Docs/accept.txt @@ -119,4 +119,4 @@ upvote walkthroughs? ul -Agno +[Aa]gno diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index 3f7ee233c9..dafce4cc04 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -2,7 +2,7 @@ title: Agno Integration sidebar_label: Agno description: Integrate Apify with Agno to power AI agents with web scraping, automation, and data insights. -sidebar_position: 1 +sidebar_position: 14 slug: /integrations/agno --- From 38707302d9d1251ff7082ebca499956029350529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= <73562907+ohlava@users.noreply.github.com> Date: Tue, 6 May 2025 13:14:19 +0200 Subject: [PATCH 07/11] Remove apify-langchain dependence.md --- sources/platform/integrations/ai/agno.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index dafce4cc04..d7992ca8ab 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -31,7 +31,7 @@ This guide shows how to integrate Apify Actors with Agno to empower your AI agen - *Required packages*: Install the following dependencies in your terminal: ```bash -pip install agno apify-client langchain-apify +pip install agno apify-client ``` ## Basic Integration Example From 9d8c38d8b2524733dc3a96692a1fa9a55c4c423a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= <73562907+ohlava@users.noreply.github.com> Date: Thu, 8 May 2025 18:15:14 +0200 Subject: [PATCH 08/11] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michał Olender <92638966+TC-MO@users.noreply.github.com> Co-authored-by: Jiří Spilka --- sources/platform/integrations/ai/agno.md | 36 +++++++++++------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index d7992ca8ab..b90ac5b113 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -26,9 +26,9 @@ This guide shows how to integrate Apify Actors with Agno to empower your AI agen ### Prerequisites -- *Apify API token*: Obtain your token from the [Apify console](https://console.apify.com/account/integrations). -- *Python environment*: Ensure Python is installed (version 3.8+ recommended). -- *Required packages*: Install the following dependencies in your terminal: +- _Apify API token_: Obtain your token from the [Apify console](https://console.apify.com/account/integrations). +- _Python environment_: Ensure Python is installed (version 3.8+ recommended). +- _Required packages_: Install the following dependencies in your terminal: ```bash pip install agno apify-client @@ -39,17 +39,17 @@ pip install agno apify-client 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. ```python +import os + from agno.agent import Agent from agno.tools.apify import ApifyTools +os.environ["APIFY_API_TOKEN"] = "YOUR_APIFY_API_TOKEN" # Replace with your Apify API token +os.environ["OPENAI_API_KEY"] = "YOUR_OPENAI_API_KEY" # Replace with your OpenAI API key + # Initialize the agent with Apify tools agent = Agent( - tools=[ - ApifyTools( - actors=["apify/rag-web-browser"], - apify_api_token="YOUR_APIFY_API_TOKEN" # Replace YOUR_APIFY_API_TOKEN with your token - ) - ], + tools=[ApifyTools( actors=["apify/rag-web-browser"])], show_tool_calls=True, markdown=True ) @@ -60,20 +60,19 @@ agent.print_response("Extract key details from https://docs.agno.com/introductio Running this code will scrape the specified URL and return formatted content your agent can use. -:::tip Environment variable token - -You can also set the APIFY_API_TOKEN environment variable instead of passing it directly in the code. - -::: - -### Advanced Scenario: Travel Planning Agent +### Advanced scenario: Travel planning agent Combine multiple Apify Actors to create a powerful travel planning agent. This example uses the RAG Web Browser and Google Places Crawler to gather travel insights and local business data. ```python +import os + from agno.agent import Agent from agno.tools.apify import ApifyTools +os.environ["APIFY_API_TOKEN"] = "YOUR_APIFY_API_TOKEN" # Replace with your Apify API token +os.environ["OPENAI_API_KEY"] = "YOUR_OPENAI_API_KEY" # Replace with your OpenAI API key + # Create a travel planning agent agent = Agent( name="Travel Planner", @@ -85,8 +84,7 @@ agent = Agent( actors=[ "apify/rag-web-browser", # For general web research "compass/crawler-google-places" # For location-based data - ], - apify_api_token="YOUR_APIFY_API_TOKEN" + ] ) ], show_tool_calls=True, @@ -117,7 +115,7 @@ Browse the [Apify Store](https://apify.com/store) to find additional Actors for ::: -### Available Apify Tools +### Available Apify tools 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. From b1bc08a45b7037bebe3bd379cefeef9f7586115a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= Date: Fri, 9 May 2025 10:56:41 +0200 Subject: [PATCH 09/11] Configuration better readability and Alternative LLM providers --- sources/platform/integrations/ai/agno.md | 25 ++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index b90ac5b113..97f07de5e4 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -20,13 +20,21 @@ Check out the [Agno documentation](https://docs.agno.com/introduction) for more ::: -## How to Use Apify with Agno +## How to use Apify with Agno 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). ### Prerequisites -- _Apify API token_: Obtain your token from the [Apify console](https://console.apify.com/account/integrations). +- _Apify API token_: Obtain your API token from the [Apify console](https://console.apify.com/account/integrations). +- _OpenAI API key_: Get your API key from the [OpenAI platform](https://platform.openai.com/account/api-keys). + +:::tip Alternative LLM providers + +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. + +::: + - _Python environment_: Ensure Python is installed (version 3.8+ recommended). - _Required packages_: Install the following dependencies in your terminal: @@ -34,7 +42,7 @@ This guide shows how to integrate Apify Actors with Agno to empower your AI agen pip install agno apify-client ``` -## Basic Integration Example +## Basic integration example 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. @@ -119,12 +127,13 @@ Browse the [Apify Store](https://apify.com/store) to find additional Actors for 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. -## Configuration Options +## Configuration options + +**`apify_api_token`** (string, default: `None`) +: Apify API token (or set via APIFY_API_TOKEN environment variable) -| Parameter | Type | Default | Description | -| ---------------------------- | ------------------- | ------- | ------------------------------------------------------------------ | -| `apify_api_token` | `str` | `None` | Apify API token (or set via APIFY_API_TOKEN environment variable) | -| `actors` | `str` or `List[str]`| `None` | Single Actor ID or list of Actor IDs to register | +**`actors`** (string or List[string], default: `None`) +: Single Actor ID or list of Actor IDs to register ## Resources From 4b47fb99c41b1a243c5c16f70e6aeb9ba8cc7e86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= Date: Sat, 10 May 2025 11:50:31 +0200 Subject: [PATCH 10/11] Add link to agno docs --- sources/platform/integrations/ai/agno.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index 97f07de5e4..a0b19bc5d3 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -142,3 +142,4 @@ Agno supports any Apify Actor via the ApifyTools class. You can specify a single - [Apify Platform Documentation](https://docs.apify.com) - [Apify Actor Documentation](https://docs.apify.com/actors) - [Apify Store - Browse available Actors](https://apify.com/store) +- [Agno Apify Toolkit Documentation](https://docs.agno.com/tools/toolkits/others/apify#apify) From 8c86895060c4fa33c81aee52d34e01739a179a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlava?= Date: Mon, 12 May 2025 20:42:15 +0200 Subject: [PATCH 11/11] Remove baldness of Config options --- sources/platform/integrations/ai/agno.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/platform/integrations/ai/agno.md b/sources/platform/integrations/ai/agno.md index a0b19bc5d3..41e79eb073 100644 --- a/sources/platform/integrations/ai/agno.md +++ b/sources/platform/integrations/ai/agno.md @@ -129,10 +129,10 @@ Agno supports any Apify Actor via the ApifyTools class. You can specify a single ## Configuration options -**`apify_api_token`** (string, default: `None`) +`apify_api_token` (string, default: `None`) : Apify API token (or set via APIFY_API_TOKEN environment variable) -**`actors`** (string or List[string], default: `None`) +`actors` (string or List[string], default: `None`) : Single Actor ID or list of Actor IDs to register ## Resources