Metadata-Version: 2.4
Name: gensimllms
Version: 0.0.5
Summary: Python library to support LLM testing.
Author: Grace Boothe
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# gensimllms

`gensimllms` Python library for testing LLMs.

**Status:** Experimental research and teaching tool.

## Installation

```bash
pip install gensimllms
```

## Running within Python code.
```bash
import gensimllms 
```

| File | Use |
|------|-----|
|simulator.py | Contains the main GeneralSimulator class |
|models.py | Contains the api calls for the LLMs, currently only contains GPT |
|user_template.py| Contains the UserTemplate class which tells user what needs to be included for the mina GeneralSimulator class to work |
|user_example.py| A very basic example of how you would implement and fill in the UserTemplate class |
