bee-sdk 0.2.0__tar.gz → 0.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.
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/PKG-INFO +10 -4
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/README.md +8 -2
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/bee_sdk/__init__.py +1 -1
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/bee_sdk/client.py +1 -1
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/pyproject.toml +2 -2
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/.gitignore +0 -0
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/bee_sdk/mcp.py +0 -0
- {bee_sdk-0.2.0 → bee_sdk-0.2.2}/bee_sdk/types.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bee-sdk
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Official Python client + MCP server for the Bee Intelligence Engine — domain-specialized LoRA-routed LLM by CUI Labs.
|
|
5
5
|
Project-URL: Homepage, https://bee.cuilabs.io
|
|
6
6
|
Project-URL: Documentation, https://bee.cuilabs.io/docs/sdks
|
|
7
|
-
Project-URL: Repository, https://github.com/cuilabs/bee
|
|
7
|
+
Project-URL: Repository, https://github.com/cuilabs/bee-community
|
|
8
8
|
Project-URL: Issues, https://github.com/cuilabs/bee-community/issues
|
|
9
9
|
Project-URL: Changelog, https://bee.cuilabs.io/changelog
|
|
10
10
|
Project-URL: Hugging Face, https://huggingface.co/cuilabs
|
|
@@ -37,9 +37,15 @@ Description-Content-Type: text/markdown
|
|
|
37
37
|
|
|
38
38
|
# bee-sdk
|
|
39
39
|
|
|
40
|
-
Official Python client for the **Bee Intelligence Engine** — a domain-specialized LLM by [CUI Labs](https://bee.cuilabs.io) routing per-domain LoRA adapters over a verified open-weight base.
|
|
40
|
+
Official Python client + MCP server for the **Bee Intelligence Engine** — a domain-specialized LLM by [CUI Labs](https://bee.cuilabs.io) routing per-domain LoRA adapters over a verified open-weight base.
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
<!-- mcp-name: io.github.cuilabs/bee -->
|
|
43
|
+
|
|
44
|
+
SDK version: `0.2.2`.
|
|
45
|
+
|
|
46
|
+
Includes a hosted **Model Context Protocol** server: `pip install bee-sdk` then
|
|
47
|
+
run `bee-mcp` (stdio) to expose Bee's 11 domain tools to Claude Desktop, Cursor,
|
|
48
|
+
VS Code, Zed, and Windsurf. See [bee.cuilabs.io/docs/mcp](https://bee.cuilabs.io/docs/mcp).
|
|
43
49
|
|
|
44
50
|
> **Status:** functional sync + async client (stdlib + optional `httpx`).
|
|
45
51
|
> The SDK targets the Bee `/chat/completions` API contract on
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# bee-sdk
|
|
2
2
|
|
|
3
|
-
Official Python client for the **Bee Intelligence Engine** — a domain-specialized LLM by [CUI Labs](https://bee.cuilabs.io) routing per-domain LoRA adapters over a verified open-weight base.
|
|
3
|
+
Official Python client + MCP server for the **Bee Intelligence Engine** — a domain-specialized LLM by [CUI Labs](https://bee.cuilabs.io) routing per-domain LoRA adapters over a verified open-weight base.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<!-- mcp-name: io.github.cuilabs/bee -->
|
|
6
|
+
|
|
7
|
+
SDK version: `0.2.2`.
|
|
8
|
+
|
|
9
|
+
Includes a hosted **Model Context Protocol** server: `pip install bee-sdk` then
|
|
10
|
+
run `bee-mcp` (stdio) to expose Bee's 11 domain tools to Claude Desktop, Cursor,
|
|
11
|
+
VS Code, Zed, and Windsurf. See [bee.cuilabs.io/docs/mcp](https://bee.cuilabs.io/docs/mcp).
|
|
6
12
|
|
|
7
13
|
> **Status:** functional sync + async client (stdlib + optional `httpx`).
|
|
8
14
|
> The SDK targets the Bee `/chat/completions` API contract on
|
|
@@ -27,7 +27,7 @@ VS Code, …) this package ships a hosted MCP server — run ``bee-mcp``
|
|
|
27
27
|
from .client import Bee, AsyncBee, BeeError, RateLimitError, BeeAPIError
|
|
28
28
|
from .types import ChatMessage, ChatResponse, Domain, ModelTier
|
|
29
29
|
|
|
30
|
-
__version__ = "0.2.
|
|
30
|
+
__version__ = "0.2.2"
|
|
31
31
|
__all__ = [
|
|
32
32
|
"Bee",
|
|
33
33
|
"AsyncBee",
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bee-sdk"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "Official Python client + MCP server for the Bee Intelligence Engine — domain-specialized LoRA-routed LLM by CUI Labs."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -59,7 +59,7 @@ dev = [
|
|
|
59
59
|
[project.urls]
|
|
60
60
|
Homepage = "https://bee.cuilabs.io"
|
|
61
61
|
Documentation = "https://bee.cuilabs.io/docs/sdks"
|
|
62
|
-
Repository = "https://github.com/cuilabs/bee"
|
|
62
|
+
Repository = "https://github.com/cuilabs/bee-community"
|
|
63
63
|
Issues = "https://github.com/cuilabs/bee-community/issues"
|
|
64
64
|
Changelog = "https://bee.cuilabs.io/changelog"
|
|
65
65
|
"Hugging Face" = "https://huggingface.co/cuilabs"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|