Metadata-Version: 2.2
Name: empire-chain
Version: 0.1.4
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
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: openai
Requires-Dist: anthropic
Requires-Dist: groq
Requires-Dist: qdrant-client
Requires-Dist: chromadb
Dynamic: author
Dynamic: author-email
Dynamic: home-page
Dynamic: requires-python

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.
