Skip to content

Commit 92f8ad8

Browse files
Merge pull request #413 from MervinPraison/develop
Add documentation for additional search tools
2 parents 1338730 + dfe0914 commit 92f8ad8

File tree

6 files changed

+84
-1
lines changed

6 files changed

+84
-1
lines changed

docs/mint.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,12 @@
212212
"pages": [
213213
"tools/external/serp-api",
214214
"tools/external/brave-search",
215-
"tools/external/google-trends"
215+
"tools/external/google-trends",
216+
"tools/external/exa-search",
217+
"tools/external/wikipedia-search",
218+
"tools/external/duckduckgo-search",
219+
"tools/external/google-serper-search",
220+
"tools/external/serp-search"
216221
]
217222
},
218223
"tools/duckduckgo_tools",

docs/tools/external/duckduckgo-search.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
title: "DuckDuckGo Search Tool"
3+
description: "Guide for using the DuckDuckGo Search tool with PraisonAI agents."
4+
icon: "duck"
5+
---
6+
7+
## Overview
8+
9+
The DuckDuckGo Search tool is a tool that allows you to search the web using the DuckDuckGo search engine.
10+
11+
```bash
12+
pip install praisonaiagents
13+
export OPENAI_API_KEY=your_api_key_here
14+
```
15+
116
```python
217
from praisonaiagents import Agent, PraisonAIAgents
318
from praisonaiagents.tools import duckduckgo

docs/tools/external/exa-search.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
---
2+
title: "Exa Search Tool"
3+
description: "Guide for using the Exa Search tool with PraisonAI agents."
4+
icon: "magnifying-glass-chart"
5+
---
6+
7+
## Overview
8+
9+
The Exa Search tool is a tool that allows you to search the web and retrieve content using the Exa API.
10+
11+
```bash
12+
pip install praisonaiagents exa-py
13+
export EXA_API_KEY=your_api_key_here
14+
export OPENAI_API_KEY=your_api_key_here
15+
```
16+
117
```python
218
from praisonaiagents import Agent, PraisonAIAgents
319
from exa_py import Exa

docs/tools/external/google-serper-search.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
---
2+
title: "Google Serper Search Tool"
3+
description: "Guide for using the Google Serper Search tool with PraisonAI agents."
4+
icon: "google"
5+
---
6+
7+
## Overview
8+
9+
The Google Serper Search tool is a tool that allows you to search the web using the Google Serper API.
10+
11+
```bash
12+
pip install langchain-community python-dotenv
13+
export SERPER_API_KEY=your_api_key_here
14+
export OPENAI_API_KEY=your_api_key_here
15+
```
16+
117
```python
218
from praisonaiagents import Agent, PraisonAIAgents
319
from langchain_community.utilities import GoogleSerperAPIWrapper

docs/tools/external/serp-search.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
---
2+
title: "SerpSearch Tool"
3+
description: "Guide for using the SerpSearch tool with PraisonAI agents."
4+
icon: "searchengin"
5+
---
6+
7+
## Overview
8+
9+
The SerpSearch tool is a tool that allows you to search the web using the SerpAPI.
10+
11+
```bash
12+
pip install langchain-community google-search-results
13+
export SERPAPI_API_KEY=your_api_key_here
14+
export OPENAI_API_KEY=your_api_key_here
15+
```
16+
117
```python
218
from praisonaiagents import Agent, PraisonAIAgents
319
from langchain_community.utilities import SerpAPIWrapper

docs/tools/external/wikipedia-search.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
---
2+
title: "Wikipedia Search Tool"
3+
description: "Guide for using the Wikipedia Search tool with PraisonAI agents."
4+
icon: "wikipedia-w"
5+
---
6+
7+
## Overview
8+
9+
The Wikipedia Search tool is a tool that allows you to search and retrieve information from Wikipedia.
10+
11+
```bash
12+
pip install langchain-community
13+
export OPENAI_API_KEY=your_api_key_here
14+
```
15+
116
```python
217
from praisonaiagents import Agent, PraisonAIAgents
318
from langchain_community.utilities import WikipediaAPIWrapper

0 commit comments

Comments
 (0)