Metadata-Version: 2.4
Name: celeste-ai
Version: 0.0.2
Summary: Celeste AI Framework - Multi-modal AI interface (placeholder)
Project-URL: Homepage, https://celeste-ai.co
Project-URL: Repository, https://github.com/celeste-kai/celeste-ai
Author-email: agent-kai <kai@celeste-ai.co>
Keywords: ai,anthropic,google,ml,multimodal,openai
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Requires-Dist: pydantic-settings>=2.0
Requires-Dist: pydantic>=2.0
Provides-Extra: dev
Requires-Dist: bandit[toml]>=1.7.5; extra == 'dev'
Requires-Dist: mypy>=1.13.0; extra == 'dev'
Requires-Dist: pre-commit>=3.5.0; extra == 'dev'
Requires-Dist: pytest-cov>=7.0; extra == 'dev'
Requires-Dist: pytest-randomly>=4.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.8.0; extra == 'dev'
Requires-Dist: types-requests>=2.31.0; extra == 'dev'
Description-Content-Type: text/markdown

# Celeste AI Framework

[![semantic-release: conventionalcommits](https://img.shields.io/badge/semantic--release-conventionalcommits-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)
[![PyPI version](https://badge.fury.io/py/celeste-ai.svg)](https://pypi.org/project/celeste-ai/)

> **Note: This is a placeholder package to reserve the name. The full framework is coming soon!**

Celeste AI will be a unified multi-modal AI framework providing a single interface for:

- 🤖 Text generation (OpenAI, Anthropic, Google, Mistral, etc.)
- 🎨 Image generation & editing (DALL-E, Midjourney, Stable Diffusion, etc.)
- 🎬 Video generation (Google Video AI, Replicate, etc.)
- 🎵 Audio processing (Whisper, Google Speech, etc.)
- 📊 Embeddings & vector operations
- 🔍 Text reranking and search

## Coming Soon

```python
from celeste import create_client, Capability, Provider

# Unified API for all AI capabilities
client = create_client(
    capability=Capability.TEXT_GENERATION,
    provider=Provider.ANTHROPIC,
    model="claude-sonnet-4"
)
```

## Installation (when ready)

```bash
pip install "celeste-ai[all]"          # Everything
pip install "celeste-ai[text]"         # Text generation only
pip install "celeste-ai[vision]"       # Image/video generation
```

---

**Status**: Package name reserved. Framework in active development.

**Contact**: [GitHub Issues](https://github.com/agent-kai/celeste-ai)
