Metadata-Version: 2.4
Name: dactyl_generation
Version: 1.0.0
Summary: LLM helper package to generate AI-generated texts.
Author: Shantanu Thorat
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: anthropic
Requires-Dist: litellm
Requires-Dist: mistralai
Requires-Dist: numpy==1.26.4
Requires-Dist: openai
Requires-Dist: pandas
Requires-Dist: protobuf
Requires-Dist: python-dotenv
Requires-Dist: Requests
Requires-Dist: tqdm
Requires-Dist: typing_extensions
Requires-Dist: google-generativeai
Requires-Dist: boto3
Dynamic: license-file

# DACTYL-Generation

A Python package to generate LLM data from various APIs. 

## Installation
```bash
pip install dactyl_generation
```

## Usage

Load environment variables (your API keys first) before importing the library. 
```python
# load environment variables first
from dotenv import load_dotenv
load_dotenv()

# now import library
from dactyl_generation.quick import *

```
