Installation
System Requirements
- Python 3.10+.
- pip (Python package installer).
Installation Methods
- Using pip (Recommended):
pip install intelli
This downloads and installs the latest stable version along with dependencies.
The extras add the optional capabilities:
pip install intelli[mcp] # MCP servers and clients
pip install intelli[computer] # computer use and browser agent
pip install intelli[speech] # speech recognition providers
pip install intelli[offline] # offline models through keras
pip install intelli[llamacpp] # GGUF models
The computer use agent also needs a browser:
python -m playwright install chromium
- From Source:
Clone the intelli repository.
git clone https://github.com/intelligentnode/Intelli.git
Importing
To use the library:
import intelli
To use the chatbot:
from intelli.model.input.chatbot_input import ChatModelInput
from intelli.function.chatbot import Chatbot
To use the flow for multiple models interaction:
from intelli.flow.agents import Agent
from intelli.flow.tasks import Task
from intelli.flow.flow import Flow