Install NexAU
Install from the latest GitHub release using SSH. Python 3.12 or later is required.Also install
python-dotenv so you can load environment variables from a .env file:Define your tools
NexAU decouples tool schemas (YAML) from their implementations (Python). Create a
tools/ directory and add two YAML files:tools/WebSearch.yaml
tools/WebRead.yaml
Create the agent
Create Your project directory should look like this:
research_agent.py in the same directory:research_agent.py
Next steps
- Learn about agent configuration to control context limits, tool call mode, and system prompts.
- Explore all built-in tools for file I/O, shell execution, and more.
- Add middleware for logging and caching.
- Set up multi-agent teams to tackle larger tasks.