celeste-ai 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of celeste-ai might be problematic. Click here for more details.

@@ -0,0 +1,22 @@
1
+ # Python cache
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.so
5
+
6
+ # Build artifacts
7
+ build/
8
+ dist/
9
+ *.egg-info/
10
+ .eggs/
11
+
12
+ # Virtual environments
13
+ .venv/
14
+ venv/
15
+
16
+ # Jupyter
17
+ .ipynb_checkpoints/
18
+
19
+ # macOS
20
+ .DS_Store
21
+
22
+
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: celeste-ai
3
+ Version: 0.0.1
4
+ Summary: Celeste AI Framework - Multi-modal AI interface (placeholder)
5
+ Project-URL: Homepage, https://github.com/agent-kai/celeste-ai
6
+ Project-URL: Repository, https://github.com/agent-kai/celeste-ai
7
+ Author-email: agent-kai <contact@example.com>
8
+ Keywords: ai,anthropic,google,ml,multimodal,openai
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+
21
+ # Celeste AI Framework
22
+
23
+ > **Note: This is a placeholder package to reserve the name. The full framework is coming soon!**
24
+
25
+ Celeste AI will be a unified multi-modal AI framework providing a single interface for:
26
+
27
+ - 🤖 Text generation (OpenAI, Anthropic, Google, Mistral, etc.)
28
+ - 🎨 Image generation & editing (DALL-E, Midjourney, Stable Diffusion, etc.)
29
+ - 🎬 Video generation (Google Video AI, Replicate, etc.)
30
+ - 🎵 Audio processing (Whisper, Google Speech, etc.)
31
+ - 📊 Embeddings & vector operations
32
+ - 🔍 Text reranking and search
33
+
34
+ ## Coming Soon
35
+
36
+ ```python
37
+ from celeste import create_client, Capability, Provider
38
+
39
+ # Unified API for all AI capabilities
40
+ client = create_client(
41
+ capability=Capability.TEXT_GENERATION,
42
+ provider=Provider.ANTHROPIC,
43
+ model="claude-sonnet-4"
44
+ )
45
+ ```
46
+
47
+ ## Installation (when ready)
48
+
49
+ ```bash
50
+ pip install "celeste-ai[all]" # Everything
51
+ pip install "celeste-ai[text]" # Text generation only
52
+ pip install "celeste-ai[vision]" # Image/video generation
53
+ ```
54
+
55
+ ---
56
+
57
+ **Status**: Package name reserved. Framework in active development.
58
+
59
+ **Contact**: [GitHub Issues](https://github.com/agent-kai/celeste-ai)
@@ -0,0 +1,39 @@
1
+ # Celeste AI Framework
2
+
3
+ > **Note: This is a placeholder package to reserve the name. The full framework is coming soon!**
4
+
5
+ Celeste AI will be a unified multi-modal AI framework providing a single interface for:
6
+
7
+ - 🤖 Text generation (OpenAI, Anthropic, Google, Mistral, etc.)
8
+ - 🎨 Image generation & editing (DALL-E, Midjourney, Stable Diffusion, etc.)
9
+ - 🎬 Video generation (Google Video AI, Replicate, etc.)
10
+ - 🎵 Audio processing (Whisper, Google Speech, etc.)
11
+ - 📊 Embeddings & vector operations
12
+ - 🔍 Text reranking and search
13
+
14
+ ## Coming Soon
15
+
16
+ ```python
17
+ from celeste import create_client, Capability, Provider
18
+
19
+ # Unified API for all AI capabilities
20
+ client = create_client(
21
+ capability=Capability.TEXT_GENERATION,
22
+ provider=Provider.ANTHROPIC,
23
+ model="claude-sonnet-4"
24
+ )
25
+ ```
26
+
27
+ ## Installation (when ready)
28
+
29
+ ```bash
30
+ pip install "celeste-ai[all]" # Everything
31
+ pip install "celeste-ai[text]" # Text generation only
32
+ pip install "celeste-ai[vision]" # Image/video generation
33
+ ```
34
+
35
+ ---
36
+
37
+ **Status**: Package name reserved. Framework in active development.
38
+
39
+ **Contact**: [GitHub Issues](https://github.com/agent-kai/celeste-ai)
@@ -0,0 +1,30 @@
1
+ [project]
2
+ name = "celeste-ai"
3
+ version = "0.0.1"
4
+ description = "Celeste AI Framework - Multi-modal AI interface (placeholder)"
5
+ authors = [{name = "agent-kai", email = "contact@example.com"}]
6
+ readme = "README.md"
7
+ requires-python = ">=3.9"
8
+ classifiers = [
9
+ "Development Status :: 1 - Planning",
10
+ "Intended Audience :: Developers",
11
+ "License :: OSI Approved :: MIT License",
12
+ "Programming Language :: Python :: 3",
13
+ "Programming Language :: Python :: 3.9",
14
+ "Programming Language :: Python :: 3.10",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
18
+ ]
19
+ keywords = ["ai", "ml", "multimodal", "openai", "anthropic", "google"]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/agent-kai/celeste-ai"
23
+ Repository = "https://github.com/agent-kai/celeste-ai"
24
+
25
+ [build-system]
26
+ requires = ["hatchling"]
27
+ build-backend = "hatchling.build"
28
+
29
+ [tool.hatch.build.targets.wheel]
30
+ packages = ["src/celeste"]
@@ -0,0 +1,25 @@
1
+ """
2
+ Celeste AI Framework
3
+
4
+ A unified multi-modal AI framework for text, image, video, and audio generation.
5
+
6
+ This is a placeholder package to reserve the name. The full framework is coming soon!
7
+ """
8
+
9
+ __version__ = "0.0.1"
10
+ __author__ = "agent-kai"
11
+
12
+ def create_client(*args, **kwargs):
13
+ """
14
+ Placeholder for the universal client factory.
15
+
16
+ The full implementation will provide a unified interface for all AI capabilities.
17
+ """
18
+ raise NotImplementedError(
19
+ "Celeste AI is in development. "
20
+ "This is a placeholder package to reserve the name. "
21
+ "Follow updates at: https://github.com/agent-kai/celeste-ai"
22
+ )
23
+
24
+ # Placeholder exports
25
+ __all__ = ["create_client"]