Skip to content

Commit 063eb16

Browse files
fix: add missing provider dependencies to capability packages (withceleste#94)
* fix: add missing provider dependencies to capability packages * chore: bump all packages to v0.3.3
1 parent 1461831 commit 063eb16

File tree

15 files changed

+50
-23
lines changed

15 files changed

+50
-23
lines changed

packages/capabilities/image-generation/pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-image-generation"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "Image generation package for Celeste AI. Unified interface for all providers"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
readme = "README.md"
@@ -18,6 +18,13 @@ classifiers = [
1818
"Typing :: Typed",
1919
]
2020
keywords = ["ai", "image-generation", "dall-e", "imagen", "openai", "google", "byteplus"]
21+
dependencies = [
22+
"celeste-ai>=0.3.3",
23+
"celeste-bfl>=0.3.3",
24+
"celeste-byteplus>=0.3.3",
25+
"celeste-google>=0.3.3",
26+
"celeste-openai>=0.3.3",
27+
]
2128

2229
[project.urls]
2330
Homepage = "https://withceleste.ai"

packages/capabilities/speech-generation/pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-speech-generation"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "Speech generation package for Celeste AI. Unified interface for all providers"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
readme = "README.md"
@@ -18,6 +18,13 @@ classifiers = [
1818
"Typing :: Typed",
1919
]
2020
keywords = ["ai", "speech-generation", "tts", "text-to-speech", "openai", "google", "elevenlabs", "gradium", "audio-ai"]
21+
dependencies = [
22+
"celeste-ai>=0.3.3",
23+
"celeste-elevenlabs>=0.3.3",
24+
"celeste-google>=0.3.3",
25+
"celeste-gradium>=0.3.3",
26+
"celeste-openai>=0.3.3",
27+
]
2128

2229
[project.urls]
2330
Homepage = "https://withceleste.ai"

packages/capabilities/text-generation/pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-text-generation"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "Text generation package for Celeste AI. Unified interface for all providers"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
readme = "README.md"
@@ -18,6 +18,15 @@ classifiers = [
1818
"Typing :: Typed",
1919
]
2020
keywords = ["ai", "text-generation", "llm", "openai", "anthropic", "claude", "gemini", "mistral", "cohere"]
21+
dependencies = [
22+
"celeste-ai>=0.3.3",
23+
"celeste-anthropic>=0.3.3",
24+
"celeste-cohere>=0.3.3",
25+
"celeste-google>=0.3.3",
26+
"celeste-mistral>=0.3.3",
27+
"celeste-openai>=0.3.3",
28+
"celeste-xai>=0.3.3",
29+
]
2130

2231
[project.urls]
2332
Homepage = "https://withceleste.ai"

packages/capabilities/video-generation/pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-video-generation"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "Video generation package for Celeste AI. Unified interface for all providers"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
readme = "README.md"
@@ -19,6 +19,10 @@ classifiers = [
1919
]
2020
keywords = ["ai", "video-generation", "sora", "runway", "openai", "google", "video-ai"]
2121
dependencies = [
22+
"celeste-ai>=0.3.3",
23+
"celeste-byteplus>=0.3.3",
24+
"celeste-google>=0.3.3",
25+
"celeste-openai>=0.3.3",
2226
"pillow>=10.0.0",
2327
]
2428

packages/providers/anthropic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-anthropic"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "Anthropic provider package for Celeste AI"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
license = {text = "Apache-2.0"}

packages/providers/bfl/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-bfl"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "BFL (Black Forest Labs) provider package for Celeste AI"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
license = {text = "Apache-2.0"}

packages/providers/byteplus/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-byteplus"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "BytePlus provider package for Celeste AI"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
license = {text = "Apache-2.0"}

packages/providers/cohere/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-cohere"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "Cohere provider package for Celeste AI"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
license = {text = "Apache-2.0"}

packages/providers/elevenlabs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-elevenlabs"
3-
version = "0.3.0"
3+
version = "0.3.3"
44
description = "ElevenLabs provider package for Celeste AI"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
license = {text = "Apache-2.0"}

packages/providers/google/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "celeste-google"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "Google (Gemini API) provider package for Celeste AI"
55
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
66
license = {text = "Apache-2.0"}

0 commit comments

Comments
 (0)