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 README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading