From c81bff7e23ae49a873741b4b2cdee173d014f6b2 Mon Sep 17 00:00:00 2001 From: SachaMorard <2254275+SachaMorard@users.noreply.github.com> Date: Wed, 4 Feb 2026 14:55:21 +0100 Subject: [PATCH] chore: edgee rename --- .github/CODEOWNERS | 2 +- README.md | 12 ++++++------ pyproject.toml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 541175b..adaf33e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @edgee-cloud/edgeers +* @edgee-ai/edgeers diff --git a/README.md b/README.md index ee41041..86fcc3c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Edgee Python SDK -Lightweight, type-safe Python SDK for the [Edgee AI Gateway](https://www.edgee.cloud). +Lightweight, type-safe Python SDK for the [Edgee AI Gateway](https://www.edgee.ai). [![PyPI version](https://img.shields.io/pypi/v/edgee.svg)]( ) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE) @@ -70,13 +70,13 @@ for chunk in edgee.stream("gpt-4o", "Tell me a story"): For complete documentation, examples, and API reference, visit: -**👉 [Official Python SDK Documentation](https://www.edgee.cloud/docs/sdk/python)** +**👉 [Official Python SDK Documentation](https://www.edgee.ai/docs/sdk/python)** The documentation includes: -- [Configuration guide](https://www.edgee.cloud/docs/sdk/python/configuration) - Multiple ways to configure the SDK -- [Send method](https://www.edgee.cloud/docs/sdk/python/send) - Complete guide to non-streaming requests -- [Stream method](https://www.edgee.cloud/docs/sdk/python/stream) - Streaming responses guide -- [Tools](https://www.edgee.cloud/docs/sdk/python/tools) - Function calling guide +- [Configuration guide](https://www.edgee.ai/docs/sdk/python/configuration) - Multiple ways to configure the SDK +- [Send method](https://www.edgee.ai/docs/sdk/python/send) - Complete guide to non-streaming requests +- [Stream method](https://www.edgee.ai/docs/sdk/python/stream) - Streaming responses guide +- [Tools](https://www.edgee.ai/docs/sdk/python/tools) - Function calling guide ## License diff --git a/pyproject.toml b/pyproject.toml index f526841..c25429a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" requires-python = ">=3.10" dependencies = [] authors = [ - { name = "Edgee", email = "support@edgee.cloud" } + { name = "Edgee", email = "support@edgee.ai" } ] keywords = ["ai", "llm", "gateway", "openai", "anthropic"] classifiers = [ @@ -22,8 +22,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/edgee-cloud/python-sdk" -Repository = "https://github.com/edgee-cloud/python-sdk" +Homepage = "https://github.com/edgee-ai/python-sdk" +Repository = "https://github.com/edgee-ai/python-sdk" [project.optional-dependencies] dev = ["pytest>=8.0.0", "ruff>=0.8.0"]