Praison AI Custom Tools - Integrate ANY Application with AI Agents
AI Nuggets
Prais and AI Custom Tools Setup Instructions
Installation and Configuration
Install Prais and AI:
pip install prais and Ai
Install DuckDuckGo search package:
pip install duckduckgo_search
Set environment variables for OpenAI API:
Export OpenAI API base URL (Gro URL):
export OPENAI_API_BASE=<Gro URL>
Export OpenAI model name (Llama 370 billion parameter model):
export OPENAI_MODEL_NAME=llama
Export OpenAI API key:
export OPENAI_API_KEY=<Your Gro API Key>
Creating Agents and Custom Tools
Initialize Prais and AI with a task:
prais and AI -iph init "research about the latest AI news and prepare a detailed report"
This command creates an agents.yaml file with the specified task.
Modify the agents.yaml file if needed:
Add or edit agents by copying and pasting the agent block and renaming it (e.g., content formatter).
Create a Custom Tool:
Create a new file named tools.py.
Write the following Python code to define an Internet search tool:
from duckduckgo_search import ddg from prais and AI tools import BaseTool class InternetSearchTool(BaseTool): description = "Search internet for relevant information based on a query or latest news" def run(self, query): # Integrate your own application or API here return ddg(query)
Add the Custom Tool to the agents.yaml file under the tools section:
tools: - InternetSearchTool
Running the Agents
Execute Prais and AI:
prais and AI
This will start the agents and use the Custom Tool to perform tasks.
Using Autogen Framework
Run Autogen with Prais and AI:
prais AI -iph framework autogen
This will run the agents using the Autogen framework.