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 AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Celesto SDK is a Python client + CLI for the Celesto AI platform. It provides:

```
celesto-sdk/
├── src/celesto_sdk/ # SDK + CLI source code
├── src/celesto/ # SDK + CLI source code
│ ├── sdk/ # SDK client, exceptions, types
│ ├── main.py # CLI app entrypoint (typer)
│ ├── deployment.py # CLI deployment helpers
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ celesto a2a get-card --agent http://localhost:8000
## SDK

```python
from celesto_sdk.sdk import CelestoSDK
from celesto.sdk import CelestoSDK

client = CelestoSDK()
print(client.deployment.list())
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ repository = "https://github.com/CelestoAI/celesto-sdk"
documentation = "https://docs.celesto.ai/celesto-sdk"

[project.scripts]
celesto = "celesto_sdk:app"
celesto = "celesto:app"

[tool.hatch.version]
path = "src/celesto_sdk/__init__.py"
path = "src/celesto/__init__.py"

[tool.hatch.build.targets.wheel]
packages = ["src/celesto_sdk"]
packages = ["src/celesto"]

[tool.uv]
package = true
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from rich.console import Console
from typing_extensions import Annotated

from celesto_sdk.sdk.client import CelestoSDK
from .sdk.client import CelestoSDK

console = Console()

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_deployment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

from celesto_sdk.deployment import _resolve_envs
from celesto.deployment import _resolve_envs


def test_resolve_envs_merges_file_and_cli(tmp_path: Path) -> None:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sdk.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from celesto_sdk.sdk import CelestoSDK
from celesto.sdk import CelestoSDK


def test_sdk_exposes_service_clients():
Expand Down