Metadata-Version: 2.1
Name: dendron
Version: 0.1.0
Summary: A library for working with LLMs and behavior trees.
Author: Richard Kelley
License: BSD License
Project-URL: Homepage, https://github.com/RichardKelley/dendron
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: torch >=2.0.0
Requires-Dist: transformers >=4.36.2
Requires-Dist: accelerate >=0.26.1
Requires-Dist: bitsandbytes >=0.42.0
Requires-Dist: sentencepiece >=0.1.99
Requires-Dist: protobuf >=4.25.2
Provides-Extra: dev
Requires-Dist: pytest >=8.0.0 ; extra == 'dev'

# 🌳 Dendron

### Installation

For a full installation that includes supports 🤗 Transformers out of the box, run

```
pip install dendron
```

This will automatically install torch, transformers, bitsandbytes, accelerate, and sentencepiece, and protobuf. You should consider installing and using [Flash Attention](https://github.com/Dao-AILab/flash-attention), which is just a pip install, but has prerequisites that you should manually check. It's worth it though - maybe doubling your inference speeds. 

### Behavior Trees for Structured Programming of LLMs

[TODO]

## Examples

For examples of basic language model node usage, see the example notebooks in this repository. For larger and more interesting examples, see the [examples repo](https://github.com/RichardKelley/dendron-examples).

## Documentation

### Tutorials

[TODO]

### How-to Guides

[TODO]

### Explanations

[TODO]

## Acknowledgements

This work was supported in part by the Federal Transit Administration and the Regional Transportation Commission of Washoe County.
