Metadata-Version: 2.4
Name: celeste-ai
Version: 0.0.1
Summary: Celeste AI Framework - Multi-modal AI interface (placeholder)
Project-URL: Homepage, https://github.com/agent-kai/celeste-ai
Project-URL: Repository, https://github.com/agent-kai/celeste-ai
Author-email: agent-kai <contact@example.com>
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
Description-Content-Type: text/markdown

# Celeste AI Framework

> **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)