-
Notifications
You must be signed in to change notification settings - Fork 91
feat(integrations): add Agno integration docs #1529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
- **Required packages**: Install the following dependencies in your terminal: | ||
|
||
```bash | ||
pip install agno apify-client langchain-apify |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is langchain-apify needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is necessary in the implementation because it enables the agent to use the Actor by providing the actor tool’s name and a brief description. It abstracts the complexity of interacting with Apify Actors, allowing to invoke them directly.
| `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 | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current ApifyTools
interface looks different.
See here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is because we updated both the docs and the actual implementation simultaneously. It's connected with to [PR#2566]agno-agi/agno#2566 which actually has this implementation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small nitpick from my side, otherwise LGTM
Co-authored-by: Michał Olender <[email protected]>
@TC-MO we can merge now |
834bd22
to
abc37be
Compare
This PR adds documentation for integrating Apify with the Agno framework, enabling users to enhance AI agents with any Apify Actor from the store.
Connected to PR#2566
Changes:
Related Issues: Closes #1511