Skip to main content

ABI Installation

ABI (Agentic Brain Infrastructure) is an AI Network development framework. The open source platform enables intelligent, multi-agent systems that run on servers and cloud infrastructure, with mobile and edge deployment under research. Your entire AI Network is defined in a single configuration file.

What is ABI?

Key Benefits:

  • Configuration-Driven - Define your entire AI Network in a single file
  • Zero Code Changes - Modify agent behavior through configuration
  • Intelligent Routing - Commands automatically reach the right agents
  • Complete Memory - Knowledge graphs, SQL databases, and vector storage
  • Portable - Run on servers and cloud, with mobile/edge research underway
  • Open Source - Complete transparency and open to community contributions

When to Use ABI

Use ABI when you need:

  • Full control over your AI infrastructure (local, cloud, or edge)
  • Custom AI agents and workflows
  • Seamless deployment across environments
  • Privacy-focused local processing capabilities
  • Development framework for AI applications

Use the Naas.ai cloud platform when you need:

  • Managed service without infrastructure setup
  • Team collaboration and sharing features
  • Enterprise-grade scaling and support

Most users start with the cloud platform and add ABI for customization later.

Portable Deployment

Deploy the same configuration across different devices and environments:

Development

  • Develop and test locally on your machine
  • Full control over data and processing
  • Offline capabilities

Cloud Infrastructure

  • Deploy to cloud servers for scaling
  • Leverage cloud compute for heavy workloads
  • Integrate with cloud services

Mobile and Edge Devices (Research Stage)

  • Exploring deployment on phones, tablets, and IoT devices
  • Research into distributed processing at the network edge
  • Future capability to bring AI closer to users

The same configuration file works everywhere.

Prerequisites

Before installing ABI, ensure you have:

  • Docker Desktop - Required for Oxigraph triple store, Dagster, and PostgreSQL
  • uv - Python package manager
  • Python 3.11+ - For running ABI components
  • Git - For cloning repositories

Installation Options

Choose the approach that best fits your needs:

Best for: Exploring ABI and following tutorials

git clone https://github.com/jupyter-naas/abi.git
cd abi

2. Fork Repository

Best for: Contributing back to the project

# 1. Fork via GitHub UI: https://github.com/jupyter-naas/abi/fork
# 2. Clone your fork
git clone https://github.com/YOUR-USERNAME/abi.git
cd abi

3. Private Fork

Best for: Private customization with upstream sync

# 1. Create private repository via GitHub UI
# 2. Clone your private repository
git clone https://github.com/YOUR-USERNAME/abi-private.git
cd abi-private

# 3. Add upstream for updates
git remote add upstream https://github.com/jupyter-naas/abi.git
git pull --rebase upstream main
git push

Environment Setup

1. Configure Environment Variables

Copy the example environment file:

cp .env.example .env

Edit .env with your preferred editor and configure at least one AI model provider:

# OpenAI (recommended for getting started)
OPENAI_API_KEY=sk-your-openai-api-key

# Anthropic Claude
ANTHROPIC_API_KEY=your-anthropic-api-key

# Google Gemini
GOOGLE_API_KEY=your-google-api-key

# Mistral
MISTRAL_API_KEY=your-mistral-api-key

Note: The .env file should never be committed to version control as it contains sensitive credentials.

2. Configure AI Network

ABI uses a single config.yaml file to define your AI Network. The main sections include:

System Configuration:

  • workspace_id: Naas Platform workspace ID for storage and publishing
  • github_project_repository: Your GitHub repository (e.g. "jupyter-naas/abi")
  • api_title: API title displayed in documentation
  • storage_name and space_name: Storage configuration

AI Network Configuration: The ai_network section defines your agents:

ai_network:
# ABI Orchestrator with centralized intent mapping
abi:
enabled: true
description: "Multi-agent orchestrator"
strengths: "Orchestration, strategic advisory"
use_when: "Identity, strategy, coordination"
intent_mapping:
raw_intents:
"what is your name": "My name is ABI"
"who are you": "I am ABI, developed by NaasAI"
tool_intents:
open_knowledge_graph_explorer:
- "show knowledge graph"
- "sparql query"
check_ai_network_config:
- "list agents"
- "agent status"
agent_intents:
chatgpt:
- "use chatgpt"
- "web search"
claude:
- "use claude"
- "anthropic"

# Foundation AI Models
chatgpt:
enabled: true
description: "OpenAI ChatGPT"
strengths: "General conversation, coding"
use_when: "General tasks, coding help"

claude:
enabled: true
description: "Anthropic Claude"
strengths: "Analysis, writing"
use_when: "Detailed analysis"

# Disabled agents (ready for activation)
llama:
enabled: false
description: "Meta Llama"
strengths: "Local, private"
use_when: "Private tasks"

Configuration-Driven Architecture

ABI uses a single configuration file to define your AI Network:

  • Single Source: Your entire AI Network in one config.yaml file
  • Intelligent Routing: Commands automatically reach the appropriate agents
  • Intent Mapping: Support for direct responses, tool routing, and agent routing
  • Memory Services: Knowledge graphs, SQL databases, and vector storage for context
  • Agent Control: Enable/disable agents with a config change
  • No Code Changes: Modify behavior through configuration

Agent Definition Structure

Each agent contains:

  • enabled: Boolean flag for activation
  • description: Brief agent description
  • strengths: Core capabilities
  • use_when: Recommended use cases

ABI Intent Mapping Types

The ABI agent contains centralized intent mapping with three types:

  • raw_intents: Direct text responses (key-value pairs)
  • tool_intents: Route to specific tools/functions
  • agent_intents: Route to specific agents

Benefits:

  • Agent Control: Change enabled: true/false to activate/deactivate agents
  • Configuration-Based: All agent behavior controlled through config.yaml
  • Consistent Management: Unified agent identification across your AI Network
  • Dynamic Mapping: Add new intents and behaviors through configuration

Quick Start

Start ABI

make

Verification

In the chat, type:

check agent status

You should see 🟢 indicators for enabled agents.

Troubleshooting

Common Issues

Docker not running?

# Start Docker Desktop and verify
docker --version
docker ps

Python dependencies failing?

# Ensure uv is installed and updated
uv --version
uv self update

# Clean and reinstall
rm -rf .venv
make setup

Oxigraph connection errors?

# Check if container is running
docker ps | grep oxigraph

# Restart if needed
docker-compose down
docker-compose up -d oxigraph

Agent not responding?

# Check environment variables
cat .env | grep API_KEY

# Verify API key validity
curl -H "Authorization: Bearer $OPENAI_API_KEY" \
https://api.openai.com/v1/models

Next Steps

Now that ABI is installed, explore its capabilities:

Explore Built-in Agents

# Chat with different specialized agents
make chat-growth-agent
make chat-finance-agent
make chat-content-agent

Learn the System

  • Explore the knowledge graph: make chat-ontology-agent
  • Build custom agents: Follow our agent development guides
  • Add integrations: Connect to external services
  • Create workflows: Automate complex processes

Development Tools

ABI includes comprehensive development tools:

# Core functionality
make chat-abi-agent # Main agent interface
make api # Start API server
make setup # Install dependencies

# Development
make lint # Code linting
make format # Code formatting
make test # Run test suite

# Ontology management
make ontology-update # Update knowledge graph
make ontology-backup # Backup ontologies

Getting Help

Documentation:

Community Support:

Direct Support:

Updating ABI

Keep your ABI installation current:

Regular Updates

# Pull latest changes
git pull origin main

# Update dependencies
make setup

# Restart services
make chat-abi-agent

For Private Forks

# Sync with upstream
git fetch upstream
git rebase upstream/main
git push origin main

# Update dependencies
make setup

Your ABI installation is now ready! Start building custom AI solutions with complete configuration-driven flexibility.