diff --git a/README.md b/README.md index bc15891..0ccb913 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # AI Power Grid — Python SDK -Free, decentralized, OpenAI-compatible AI inference. +Open-model, OpenAI-compatible inference across community-operated GPUs. The Grid API speaks the OpenAI protocol, so this SDK is a thin layer over the official `openai` package: it points at the Grid, reads your key from the diff --git a/pyproject.toml b/pyproject.toml index f29d710..e4a5109 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "grid-sdk" version = "0.1.1" -description = "Python SDK for AI Power Grid — free, decentralized, OpenAI-compatible AI inference." +description = "Python SDK for AI Power Grid open-model, OpenAI-compatible inference." readme = "README.md" requires-python = ">=3.9" license = { text = "MIT" } diff --git a/tests/test_client.py b/tests/test_client.py index ac487cc..e151298 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -49,7 +49,7 @@ def test_base_url_override(): def test_is_an_openai_client(): - # Subclassing means all openai features (chat, images, streaming) come free. + # Subclassing keeps all OpenAI client features (chat, images, streaming). assert isinstance(AIPG(api_key="k"), OpenAI) assert isinstance(AsyncAIPG(api_key="k"), AsyncOpenAI)