Core SDK for building FEAGI agents, controlling the neural engine, and creating marketplace packages (without Brain Visualizer)
Project description
FEAGI Python SDK
Build AI agents that learn like biological brains
What is FEAGI?
FEAGI (Framework for Evolutionary Artificial General Intelligence) is a biologically inspired, modular neural execution engine designed for embodied AI and robotics. FEAGI enables perception, cognition, and control through spiking neural circuits across simulated and physical embodiments, with a strong emphasis on real-time interaction, modularity, and cross-platform deployment.
FEAGI includes a 3D brain visualizer for real-time neural activity and official open source SDKs for Python (this repository), Rust, and Java. Together they support a growing ecosystem of reusable neural components ("brains"), tools, and integrations for robotics and physical AI.
Neurorobotics Studio is FEAGI's desktop application for working with brains, simulations, and embodiments in a unified environment.
The FEAGI Python SDK
The FEAGI Python SDK provides the tools you need to:
- Connect robots and devices to FEAGI's neural network
- Build learning agents for robots, simulators, and games
- Visualize neural activity in real-time with Brain Visualizer
- Control and manage FEAGI from Python code
- Interface with diverse embodiments through standardized communication protocols
Quick Start
pip install feagi
feagi start
feagi bv start
That installs the feagi package (engine, Brain Visualizer, and SDK), starts FEAGI with default configuration, and opens the Brain Visualizer. The same flow works on Linux, macOS, and Windows.
Installation
Quick Start uses feagi. If you need a smaller install without Brain Visualizer, use feagi-core instead. Imports are the same for both (from feagi import ...).
| Command | What you get |
|---|---|
pip install feagi |
Full install: neuronal engine, Brain Visualizer (adds ~196MB of platform binaries), Rust-backed Python bindings, and the agent SDK. Recommended for most users. |
pip install feagi-core |
Engine, bindings, and agent SDK only—no Brain Visualizer. Recommended for production, CI, or headless setups. |
Key Concepts
-
Neuromorphic by Design – FEAGI is built as a neuromorphic framework inspired by biological neural computation. While it currently runs on conventional CPUs and GPUs, native support for neuromorphic hardware is a near-term roadmap item, enabling direct execution on event-driven, spike-based accelerators as they mature.
-
Embodied Intelligence First – FEAGI is designed to control bodies (robots, agents, simulations), not just process static data.
-
Spiking Neural Networks (SNNs) – Uses event-driven neuron firing rather than frame-based inference.
-
Modular Neural Architecture – Neural circuits can be composed like building blocks (Lego-like micro-circuits).
-
Real-Time Closed Loop – Continuous perception → cognition → action loop.
-
Cross-Simulator & Hardware Support – One brain, many bodies.
Documentation
Configuration Management
Initialize FEAGI environment with default configuration:
feagi init
This creates:
- Configuration:
~/.feagi/config/feagi_configuration.toml - Genomes directory:
~/Documents/FEAGI/Genomes/(macOS/Windows) or~/FEAGI/genomes/(Linux) - Connectomes directory:
~/Documents/FEAGI/Connectomes/or~/FEAGI/connectomes/ - Logs and cache directories
For complete configuration options and customization, see DEPLOY.md.
Start FEAGI Engine from Python
from feagi.engine import FeagiEngine
engine = FeagiEngine()
engine.load_config() # Uses default config
engine.load_genome("my_brain.json") # Loads from genomes directory
engine.start()
Or from command line:
feagi start --config ~/.feagi/config/feagi_configuration.toml --genome my_brain.json
SDK Architecture
feagi/
├── agent/ # Agent framework (BaseAgent)
├── pns/ # Peripheral Nervous System (communication)
├── engine/ # Engine control
├── config/ # Configuration management
├── paths/ # Cross-platform path utilities
├── cli/ # Command-line tools
├── genome/ # Runtime genome manipulation (coming soon)
├── connectome/ # Brain state management (coming soon)
└── packaging/ # Marketplace packages (coming soon)
Examples
See examples/ for complete agent implementations:
- Basic sensory agent
- Robot agent (SDK-based)
- Simulator agent (Webots)
- Vision processing
Community & Support
- Discord: Join our community
- Issues: Report bugs
- Neurorobotics Studio: Cloud platform
- Homepage: feagi.org
Requirements
- Python 3.10 or higher
- Works on Linux, macOS, and Windows
License
Apache 2.0 - See LICENSE for details.
Copyright 2016-2025 Neuraville Inc. All Rights Reserved.
About Neuraville
FEAGI is developed by Neuraville, a company focused on democratizing robotics and enabling the next generation of embodied AI through modular, biologically inspired intelligence systems.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file feagi_core-2.1.38.tar.gz.
File metadata
- Download URL: feagi_core-2.1.38.tar.gz
- Upload date:
- Size: 26.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aed1220b4acef07edd938d93b9c91cadfc0555ea78d3d15fa1effcb48b39ba2
|
|
| MD5 |
063e9a4a2f5e85a52683ec2b0b8b4322
|
|
| BLAKE2b-256 |
aa346c58768567a264c1c5deddf460d6c312c118b3dd3f436acd09237e292521
|
File details
Details for the file feagi_core-2.1.38-py3-none-any.whl.
File metadata
- Download URL: feagi_core-2.1.38-py3-none-any.whl
- Upload date:
- Size: 26.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fca304cb598034e672fcc7d5f4323785df8acd96693c6c92d7a260afba199432
|
|
| MD5 |
fe2f614b9e0d706cf9922b116ef6bc91
|
|
| BLAKE2b-256 |
5a6f80814780263c9852890f4ac4af07a9b24d9f957082deff2ef42c1aa0fd9b
|