Metadata-Version: 2.1
Name: archytas
Version: 0.1.0
Summary: A library for pairing LLM agents with tools so they perform open ended tasks
Author: David Andrew Samson
Author-email: david.andrew.engineer@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: docstring-parser (>=0.15,<0.16)
Requires-Dist: openai (>=0.27.4,<0.28.0)
Requires-Dist: pytz (>=2023.3,<2024.0)
Requires-Dist: rich (>=13.3.4,<14.0.0)
Requires-Dist: tenacity (>=8.2.2,<9.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Description-Content-Type: text/markdown

# Archytas
Large Language Model (LLM) agent tool sandbox.

# Quicksart
```bash
# clone
git clone git@github.com:jataware/archytas.git
cd archytas
pip install -r requirements.txt
pip install -r dev-requirements.txt
pip install -e .

# make sure OPENAI_API_KEY is set
export OPENAI_API_KEY=sk-...

# run demo
python -m archytas.test
```
