Skip to content

Commit ef01ef4

Browse files
committed
chore: renamed phidata into agno
1 parent 6fa6872 commit ef01ef4

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

integrations/phidata.mdx renamed to integrations/agno.mdx

+23-14
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,47 @@
11
---
2-
title: '🦐 Phidata'
3-
description: 'Build AI Assistants with ScrapeGraph using Phidata'
2+
title: '🦐 Agno'
3+
description: 'Build AI Assistants with ScrapeGraphAI and Agno'
44
---
55

6+
67
## Overview
78

8-
[Phidata](https://www.phidata.com) is a development framework for building production-ready AI Assistants. This integration allows you to easily add ScrapeGraph's web scraping capabilities to your Phidata-powered AI agents.
9+
[Agno](https://www.agno.com) is a development framework for building production-ready AI Assistants. This integration allows you to easily add ScrapeGraph's web scraping capabilities to your Agno-powered AI agents.
910

1011
<Card
11-
title="Official Phidata Documentation"
12+
13+
title="Official Agno Documentation"
1214
icon="book"
13-
href="https://docs.phidata.com/introduction"
15+
16+
href="https://docs.agno.com/introduction"
1417
>
15-
Learn more about building AI Assistants with Phidata
18+
Learn more about building AI Assistants with Agno
1619
</Card>
1720

1821
## Installation
1922

2023
Install the required packages:
2124

2225
```bash
23-
pip install -U phidata
26+
27+
pip install -U agno
2428

2529
pip install scrapegraph-py
2630
```
2731

2832
## Usage
2933

34+
3035
### Basic Example
3136

3237
Create an AI Assistant with ScrapeGraph tools:
3338

3439
```python
35-
from phi.agent import Agent
36-
from phi.tools.scrapegraph_tools import ScrapeGraphTools
40+
from agno.agent import Agent
41+
from agno.tools.scrapegraph_tools import ScrapeGraphTools
3742

3843
# Initialize with smartscraper enabled
44+
3945
scrapegraph = ScrapeGraphTools(smartscraper=True)
4046

4147
# Create an agent with the tools
@@ -62,8 +68,9 @@ Use smartscraper to extract the following from https://www.wired.com/category/sc
6268
You can also use ScrapeGraph to convert web pages to markdown:
6369

6470
```python
65-
from phi.agent import Agent
66-
from phi.tools.scrapegraph_tools import ScrapeGraphTools
71+
from agno.agent import Agent
72+
from agno.tools.scrapegraph_tools import ScrapeGraphTools
73+
6774

6875
# Initialize with only markdownify enabled
6976
scrapegraph_md = ScrapeGraphTools(smartscraper=False)
@@ -104,16 +111,18 @@ Need help with the integration?
104111

105112
<CardGroup cols={2}>
106113
<Card
107-
title="Phidata Discord"
114+
title="Agno Discord"
108115
icon="discord"
109116
href="https://discord.gg/4MtYHHrgA8"
110117
>
111-
Join the Phidata community
118+
119+
Join the Agno community
112120
</Card>
113121
<Card
114122
title="GitHub Cookbook"
123+
115124
icon="github"
116-
href="https://github.com/phidatahq/phidata/blob/main/cookbook/tools/scrapegraph_tools.py"
125+
href="https://github.com/agno-agi/agno/blob/main/cookbook/tools/scrapegraph_tools.py"
117126
>
118127
Check out the source code
119128
</Card>

mint.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
"integrations/langchain",
114114
"integrations/llamaindex",
115115
"integrations/crewai",
116-
"integrations/phidata"
116+
"integrations/agno"
117117
]
118118
},
119119
{

0 commit comments

Comments
 (0)