Install PraisonAI with Ollama - Multi-Agent Autonomous AI System
AI Nuggets
Installation and Integration of Pran AI with Olama
Prerequisites
- Ensure you have a local system running Ubuntu 22.4 with at least 16 GB of VRAM.
- It’s recommended to have
conda
installed for creating virtual environments. Search the channel for videos on installingconda
if needed.Creating a Conda Environment
- Open your terminal and clear the screen.
- Create a new
conda
environment with the following command:Replaceconda create -n pranai python=<version>
<version>
with the desired Python version.- When prompted, type
y
to proceed with the environment creation.- Activate the new environment:
You should see the environment name in the terminal prompt.conda activate pranai
Installing Pran AI
- With the
conda
environment activated, install Pran AI using pip:Wait for the installation to complete.pip install pranai
Installing Olama
- Go to the Olama website (URL not provided in the transcript, but you can find it by following the instructions in the video).
- Click on “Download” and select the Linux version.
- Copy the installation command provided on the website.
- Back in the terminal, clear the screen and run the copied command to install Olama.
Running Olama and Downloading Models
- To check if any models are installed, use:
olama list
- To download and run a model (e.g.,
mistol
), use:Wait for the model to download and start running.olama run mistol
Integrating Olama with Pran AI
- Create a new directory for Pran AI and navigate into it:
mkdir pranai cd pranai
- Set up the base for Olama integration:
This sets the local host port where Olama runs by default.export OPENAI_BASE=http://localhost:11434
- Specify the model name and set the API key to ‘na’ (since it’s not used):
export OPENAI_MODEL=mistol export OPENAI_KEY=na
Initializing Pran AI
- To initialize Pran AI with a natural language prompt, run:
This will create anpranai --init "write a weird funny joke"
agents.yml
file with the agent configuration.Running Pran AI
- To execute the agent and generate tasks, simply type:
Wait for the agent to complete its work.pranai
Additional Information
- The video suggests that Pran AI can be integrated with other models from Olama or even with OpenAI.
- The link to Pran AI and additional resources are mentioned to be in the video’s description.
Tips
- It’s highly recommended to watch the previous video for more details on Pran AI.
- Pran AI can also be installed on Windows systems.
Video Description (Not provided)
- The URL to the previous video about Pran AI installation and integration with OpenAI.
- The link to Pran AI for further information and download.
Subscription and Sharing
- Consider subscribing to the channel for more content.
- Share the video with your network to support the channel.