Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
with:
fetch-depth: 1
- uses: ./.github/actions/setup-python-uv
- run: uv build
- run: uv build --all-packages
- run: |
uv pip install twine
uv run twine check dist/*
Expand Down
2 changes: 1 addition & 1 deletion packages/text-generation/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "text-generation"
name = "celeste-text-generation"
version = "0.1.0"
description = "Type-safe text generation for Celeste AI. Unified interface for OpenAI, Anthropic, Google, Mistral, Cohere, and more"
authors = [{name = "Kamilbenkirane", email = "kamil@withceleste.ai"}]
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ Documentation = "https://withceleste.ai/docs"
Repository = "https://github.com/withceleste/celeste-python"
Issues = "https://github.com/withceleste/celeste-python/issues"

[project.optional-dependencies]
text-generation = ["celeste-text-generation>=0.1.0"]
all = ["celeste-text-generation>=0.1.0"]

[dependency-groups]
dev = [
"pytest>=8.0",
Expand All @@ -49,6 +53,9 @@ dev = [
[tool.uv.workspace]
members = ["packages/*"]

[tool.uv.sources]
celeste-text-generation = { workspace = true }

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand Down
Loading