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/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @edgee-cloud/edgeers
* @edgee-ai/edgeers
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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"]
Expand Down
Loading