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 installing conda if needed.

Creating a Conda Environment

  1. Open your terminal and clear the screen.
  2. Create a new conda environment with the following command:
    conda create -n pranai python=<version>  
    
    Replace <version> with the desired Python version.
  3. When prompted, type y to proceed with the environment creation.
  4. Activate the new environment:
    conda activate pranai  
    
    You should see the environment name in the terminal prompt.

Installing Pran AI

  1. With the conda environment activated, install Pran AI using pip:
    pip install pranai  
    
    Wait for the installation to complete.

Installing Olama

  1. Go to the Olama website (URL not provided in the transcript, but you can find it by following the instructions in the video).
  2. Click on “Download” and select the Linux version.
  3. Copy the installation command provided on the website.
  4. Back in the terminal, clear the screen and run the copied command to install Olama.

Running Olama and Downloading Models

  1. To check if any models are installed, use:
    olama list  
    
  2. To download and run a model (e.g., mistol), use:
    olama run mistol  
    
    Wait for the model to download and start running.

Integrating Olama with Pran AI

  1. Create a new directory for Pran AI and navigate into it:
    mkdir pranai  
    cd pranai  
    
  2. Set up the base for Olama integration:
    export OPENAI_BASE=http://localhost:11434  
    
    This sets the local host port where Olama runs by default.
  3. 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

  1. To initialize Pran AI with a natural language prompt, run:
    pranai --init "write a weird funny joke"  
    
    This will create an agents.yml file with the agent configuration.

Running Pran AI

  1. To execute the agent and generate tasks, simply type:
    pranai  
    
    Wait for the agent to complete its work.

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.