Metadata-Version: 2.1
Name: empire-chain
Version: 0.1.1
Summary: An orchestration framework for all your AI needs
Home-page: https://github.com/manas95826/empire-chain
Author: Manas Chopra
Author-email: manaschopra95826@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

An orchestration framework for all your AI needs.

## Installation

```bash
pip install empire_chain
```

## Usage

```python
from empire_chain import OpenAILLM, AnthropicLLM

llm = OpenAILLM("gpt-4o-mini")
response = llm.generate("What is the capital of France?")
print(response)
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

