Cognitive Processing Demo

Watch 38 modules coordinate to analyze input, from perception through reasoning to response.

1

Input Arrives

Step 1 of 10

Interactive Playground

Try ELO-AGI

Explore the framework in a live Python REPL. Type commands or use the quick actions below.

Python 3.11 -- neuro_agi
Connecting...
>>> 

Getting Started

Install Locally

Three ways to use ELO-AGI: Python library, interactive CLI, or this web REPL.

1. Python Library

pip install elo-agi
python -c "from neuro import CognitiveCore; print('Ready')"

Use 38 cognitive modules in your own code. Requires: Python 3.9+

2. Interactive CLI

pip install elo-agi
ollama pull ministral-3:8b
neuro

Chat with streaming responses, autonomous learning, 13 tools. Requires: Ollama

3. From Source

git clone https://github.com/ezekaj/elo-agi.git
cd elo-agi && pip install -e ".[dev]"
pytest neuro-*/tests/ -v

Full access to all module source, tests, and development tools.