Skip to content

Quick Start Guide

Get started quickly with the Local AI Cyber Lab by following this guide.

Nessus AI - The world's only AI-powered exposure management platform

First Steps

  1. Follow the Installation Guide to set up your environment.

  2. Access the main services:

  3. Ollama UI: http://localhost:3000
  4. AI Guardian: http://localhost:8080
  5. MLflow: http://localhost:5000
  6. Portainer: http://localhost:9000

Basic Usage

Running Your First LLM

  1. Pull a model:

    ollama pull mistral
    

  2. Test it out:

    ollama run mistral "What can you help me with?"
    

Setting Up Security

  1. Configure AI Guardian in your .env file
  2. Test the security features:
    curl -X POST http://localhost:8080/check \
      -H "Content-Type: application/json" \
      -d '{"prompt": "Your test prompt"}'
    

Next Steps