Metadata-Version: 2.1
Name: sunsuku
Version: 0.1.2
Summary: LLMAI API Wrapper
License: MIT
Author: hideyuki-ogawa
Author-email: hogawa098@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: anthropic (>=0.34.2,<0.35.0)
Requires-Dist: google-generativeai (>=0.8.0,<0.9.0)
Requires-Dist: openai (>=1.44.1,<2.0.0)
Description-Content-Type: text/markdown

# Sunsuku

Sunsuku is a Python package that simplifies interactions with multiple large language models (LLMs) from different providers such as OpenAI(GPT), Anthropic (Claude), and Google (Gemini). This package allows you to easily switch between different AI models and manage their configurations in a unified way.

## Features
- Multiple LLM Providers: Supports integration with OpenAI, Claude (Anthropic), and Gemini (Google).
- Unified Interface: Provides a simple API to add, configure, and use models from different providers.
- Text Generation: Allows you to generate text with different AI models using a consistent interface.
- Model Configuration: Dynamically configure models and switch between different ones.
- Clear Message History: Easily clear message history for each model.

## Installation

First, make sure you have Python 3.10 or higher installed. You can install Sunsuku using pip:

```bash
pip install sunsuku
```

alternatively, if you are using poetry:

```bash
poetry add sunsuku
```

## Usage

1. 

