tokenbee-sdk 1.2.0__tar.gz → 1.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/PKG-INFO +10 -2
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/README.md +6 -1
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/pyproject.toml +6 -1
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/setup.py +6 -1
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/tokenbee/__init__.py +1 -1
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/tokenbee_sdk.egg-info/PKG-INFO +10 -2
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/setup.cfg +0 -0
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/tokenbee_sdk.egg-info/SOURCES.txt +0 -0
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/tokenbee_sdk.egg-info/dependency_links.txt +0 -0
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/tokenbee_sdk.egg-info/requires.txt +0 -0
- {tokenbee_sdk-1.2.0 → tokenbee_sdk-1.2.2}/tokenbee_sdk.egg-info/top_level.txt +0 -0
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tokenbee-sdk
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: Official Python SDK for TokenBee LLM inference gateway and observability.
|
|
5
5
|
Author: TokenBee Inc.
|
|
6
6
|
Author-email: "TokenBee Inc." <founders@tokenbee.io>
|
|
7
|
+
Project-URL: Homepage, https://tokenbee.io
|
|
8
|
+
Project-URL: Dashboard, https://tokenbee.io/dashboard
|
|
9
|
+
Project-URL: Repository, https://github.com/tokenBee/gateway
|
|
7
10
|
Classifier: Programming Language :: Python :: 3
|
|
8
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -15,7 +18,7 @@ Dynamic: requires-python
|
|
|
15
18
|
|
|
16
19
|
# TokenBee Python SDK
|
|
17
20
|
|
|
18
|
-
Official Python SDK for [TokenBee](https://tokenbee.
|
|
21
|
+
Official Python SDK for [TokenBee](https://tokenbee.io) - The Intelligent LLM Inference Gateway with Observability, Compression, and Privacy.
|
|
19
22
|
|
|
20
23
|
## Features
|
|
21
24
|
|
|
@@ -24,6 +27,11 @@ Official Python SDK for [TokenBee](https://tokenbee.dev) - The Intelligent LLM I
|
|
|
24
27
|
- **Privacy Guard**: Automatic PII masking and privacy-preserving inference.
|
|
25
28
|
- **Built-in Observability**: Automatic tracking of latency, costs, and token usage.
|
|
26
29
|
|
|
30
|
+
## Links
|
|
31
|
+
|
|
32
|
+
- **Homepage**: [https://tokenbee.io](https://tokenbee.io)
|
|
33
|
+
- **Dashboard**: [https://tokenbee.io/dashboard](https://tokenbee.io/dashboard)
|
|
34
|
+
|
|
27
35
|
## Installation
|
|
28
36
|
|
|
29
37
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TokenBee Python SDK
|
|
2
2
|
|
|
3
|
-
Official Python SDK for [TokenBee](https://tokenbee.
|
|
3
|
+
Official Python SDK for [TokenBee](https://tokenbee.io) - The Intelligent LLM Inference Gateway with Observability, Compression, and Privacy.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -9,6 +9,11 @@ Official Python SDK for [TokenBee](https://tokenbee.dev) - The Intelligent LLM I
|
|
|
9
9
|
- **Privacy Guard**: Automatic PII masking and privacy-preserving inference.
|
|
10
10
|
- **Built-in Observability**: Automatic tracking of latency, costs, and token usage.
|
|
11
11
|
|
|
12
|
+
## Links
|
|
13
|
+
|
|
14
|
+
- **Homepage**: [https://tokenbee.io](https://tokenbee.io)
|
|
15
|
+
- **Dashboard**: [https://tokenbee.io/dashboard](https://tokenbee.io/dashboard)
|
|
16
|
+
|
|
12
17
|
## Installation
|
|
13
18
|
|
|
14
19
|
```bash
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tokenbee-sdk"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.2"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="TokenBee Inc.", email="founders@tokenbee.io" },
|
|
10
10
|
]
|
|
@@ -20,3 +20,8 @@ dependencies = [
|
|
|
20
20
|
"httpx>=0.23.0",
|
|
21
21
|
]
|
|
22
22
|
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://tokenbee.io"
|
|
25
|
+
Dashboard = "https://tokenbee.io/dashboard"
|
|
26
|
+
Repository = "https://github.com/tokenBee/gateway"
|
|
27
|
+
|
|
@@ -6,7 +6,7 @@ long_description = (this_directory / "README.md").read_text()
|
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name="tokenbee-sdk",
|
|
9
|
-
version="1.2.
|
|
9
|
+
version="1.2.2",
|
|
10
10
|
packages=find_packages(),
|
|
11
11
|
install_requires=["httpx>=0.23.0"],
|
|
12
12
|
author="TokenBee Inc.",
|
|
@@ -20,4 +20,9 @@ setup(
|
|
|
20
20
|
"License :: OSI Approved :: MIT License",
|
|
21
21
|
"Operating System :: OS Independent",
|
|
22
22
|
],
|
|
23
|
+
project_urls={
|
|
24
|
+
"Homepage": "https://tokenbee.io",
|
|
25
|
+
"Dashboard": "https://tokenbee.io/dashboard",
|
|
26
|
+
"Source": "https://github.com/tokenBee/gateway",
|
|
27
|
+
},
|
|
23
28
|
)
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tokenbee-sdk
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: Official Python SDK for TokenBee LLM inference gateway and observability.
|
|
5
5
|
Author: TokenBee Inc.
|
|
6
6
|
Author-email: "TokenBee Inc." <founders@tokenbee.io>
|
|
7
|
+
Project-URL: Homepage, https://tokenbee.io
|
|
8
|
+
Project-URL: Dashboard, https://tokenbee.io/dashboard
|
|
9
|
+
Project-URL: Repository, https://github.com/tokenBee/gateway
|
|
7
10
|
Classifier: Programming Language :: Python :: 3
|
|
8
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -15,7 +18,7 @@ Dynamic: requires-python
|
|
|
15
18
|
|
|
16
19
|
# TokenBee Python SDK
|
|
17
20
|
|
|
18
|
-
Official Python SDK for [TokenBee](https://tokenbee.
|
|
21
|
+
Official Python SDK for [TokenBee](https://tokenbee.io) - The Intelligent LLM Inference Gateway with Observability, Compression, and Privacy.
|
|
19
22
|
|
|
20
23
|
## Features
|
|
21
24
|
|
|
@@ -24,6 +27,11 @@ Official Python SDK for [TokenBee](https://tokenbee.dev) - The Intelligent LLM I
|
|
|
24
27
|
- **Privacy Guard**: Automatic PII masking and privacy-preserving inference.
|
|
25
28
|
- **Built-in Observability**: Automatic tracking of latency, costs, and token usage.
|
|
26
29
|
|
|
30
|
+
## Links
|
|
31
|
+
|
|
32
|
+
- **Homepage**: [https://tokenbee.io](https://tokenbee.io)
|
|
33
|
+
- **Dashboard**: [https://tokenbee.io/dashboard](https://tokenbee.io/dashboard)
|
|
34
|
+
|
|
27
35
|
## Installation
|
|
28
36
|
|
|
29
37
|
```bash
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|