Metadata-Version: 2.1
Name: atomic-agents
Version: 1.0.5
Summary: A versatile framework for creating and managing intelligent agents.
License: LICENSE
Author: Kenny Vaneetvelde
Author-email: kenny.vaneetvelde@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: gitpython (>=3.1.43,<4.0.0)
Requires-Dist: instructor (>=1.3.4,<2.0.0)
Requires-Dist: openai (>=1.35.12,<2.0.0)
Requires-Dist: pydantic (>=2.8.0,<3.0.0)
Requires-Dist: pyfiglet (>=1.0.2,<2.0.0)
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
Requires-Dist: rich (>=13.7.1,<14.0.0)
Requires-Dist: textual (>=0.82.0,<1.0.0)
Requires-Dist: toml (>=0.10.2,<1.0.0)
Project-URL: homepage, https://github.com/KennyVaneetvelde/atomic_agents
Project-URL: repository, https://github.com/KennyVaneetvelde/atomic_agents
Description-Content-Type: text/markdown

# NOTICE:
A NEW VERSION OF ATOMIC AGENTS IS UNDER DEVELOPMENT. THIS README IS OUTDATED.
CHECK BACK SOON FOR AN UPDATE.

# Atomic Agents

A versatile framework designed to facilitate the creation and management of intelligent agents, with an optional CLI tool.

## Installation

You can install Atomic Agents with different options:

- Full installation (framework + CLI):
  ```bash
  pip install atomic-agents
  ```

- Core framework only:
  ```bash
  pip install atomic-agents[core]
  ```

- CLI tool only:
  ```bash
  pip install atomic-agents[cli]
  ```

## Getting Started

### Prerequisites
- Python 3.10 or later

### Installation

1. Either install the Atomic Agents package through pip, or locally from source:
   ```bash
   pip install atomic-agents
   ```
   or
   ```bash
   cd atomic-agents
   pip install -e .
   ```

2. Install the Atomic Assembler CLI. This is optional, but it provides a convenient way to grab new Atomic Tools from the [Atomic Forge](atomic-forge):
   ```bash
   pip install atomic-assembler
   ```

