File tree Expand file tree Collapse file tree 6 files changed +84
-1
lines changed
Expand file tree Collapse file tree 6 files changed +84
-1
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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
217from praisonaiagents import Agent, PraisonAIAgents
318from praisonaiagents.tools import duckduckgo
Original file line number Diff line number Diff line change 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
218from praisonaiagents import Agent, PraisonAIAgents
319from exa_py import Exa
Original file line number Diff line number Diff line change 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
218from praisonaiagents import Agent, PraisonAIAgents
319from langchain_community.utilities import GoogleSerperAPIWrapper
Original file line number Diff line number Diff line change 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
218from praisonaiagents import Agent, PraisonAIAgents
319from langchain_community.utilities import SerpAPIWrapper
Original file line number Diff line number Diff line change 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
217from praisonaiagents import Agent, PraisonAIAgents
318from langchain_community.utilities import WikipediaAPIWrapper
You can’t perform that action at this time.
0 commit comments