Atomic Agents
Philosophy
The Atomic Agents framework is designed to be modular, extensible, and easy to use. Components in the Atomic Agents Framework should always be as small and single-purpose as possible, similar to design system components in Atomic Design. Even though Atomic Design cannot be directly applied to AI agent architecture, a lot of ideas were taken from it. The resulting framework provides a set of tools and agents that can be combined to create powerful applications. The framework is built on top of Instructor and leverages the power of Pydantic for data validation and serialization.
A more detailed deep-dive article can be found on Medium
Installation
To install Atomic Agents, you can use pip:
pip install atomic-agents
Alternatively, for local development, to install the necessary dependencies from the repository, run the following commands in the root of the repository:
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate.bat`
pip install -r requirements.txt
pip install -e .
Quickstart
A quickstart guide is available in the quickstart notebook. More guides and tutorials will be added soon! In the meanwhile, have a look at the other examples in the examples directory.
Usage examples & Docs
While we do our best to provide excellent documentation, we are aware that it is not perfect. If you see anything missing or anything that could be improved, please don't hesitate to open an issue or a pull request.
Examples
All examples can be found in the examples directory. We do our best to thoroughly document each example, but if something is unclear, please don't hesitate to open an issue or a pull request in order to improve the documentation.
Docs
The documentation can be found in the docs directory. Here you will find both API documentation and some general guides such as How to create a new tool.
Instructor & Model Compatibility
Atomic Agents depends on the Instructor package. This means that in all examples where OpenAI is used, any other API supported by Instructor can be used, such as Cohere, Anthropic, Gemini, and more. For a complete list please refer to the instructor documentation on its GitHub page.
Additionally, Atomic Agents should work with Ollama or LMStudio. If the default settings do not work due to your local server not supporting tool-calling, you can set the mode
to JSON.
Formatting and Linting
To format & lint the code before committing, you must run the following two commands:
black atomic_agents
flake8 atomic_agents
Testing
To run the tests, run the following command:
pytest --cov atomic_agents
To view the coverage report, run the following command:
coverage html
Contributing
We welcome contributions! Please follow these steps to contribute:
- Fork the repository
- Create a new branch (
git checkout -b feature-branch
) - Make your changes
- Commit your changes (
git commit -m 'Add some feature'
) - Push to the branch (
git push origin feature-branch
) - Open a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.