bee-sdk 0.2.1__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.1 → bee_sdk-0.2.2}/PKG-INFO +3 -3
- {bee_sdk-0.2.1 → bee_sdk-0.2.2}/README.md +1 -1
- {bee_sdk-0.2.1 → bee_sdk-0.2.2}/bee_sdk/__init__.py +1 -1
- {bee_sdk-0.2.1 → bee_sdk-0.2.2}/bee_sdk/client.py +1 -1
- {bee_sdk-0.2.1 → bee_sdk-0.2.2}/pyproject.toml +2 -2
- {bee_sdk-0.2.1 → bee_sdk-0.2.2}/.gitignore +0 -0
- {bee_sdk-0.2.1 → bee_sdk-0.2.2}/bee_sdk/mcp.py +0 -0
- {bee_sdk-0.2.1 → 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
|
|
@@ -41,7 +41,7 @@ Official Python client + MCP server for the **Bee Intelligence Engine** — a do
|
|
|
41
41
|
|
|
42
42
|
<!-- mcp-name: io.github.cuilabs/bee -->
|
|
43
43
|
|
|
44
|
-
SDK version: `0.2.
|
|
44
|
+
SDK version: `0.2.2`.
|
|
45
45
|
|
|
46
46
|
Includes a hosted **Model Context Protocol** server: `pip install bee-sdk` then
|
|
47
47
|
run `bee-mcp` (stdio) to expose Bee's 11 domain tools to Claude Desktop, Cursor,
|
|
@@ -4,7 +4,7 @@ Official Python client + MCP server for the **Bee Intelligence Engine** — a do
|
|
|
4
4
|
|
|
5
5
|
<!-- mcp-name: io.github.cuilabs/bee -->
|
|
6
6
|
|
|
7
|
-
SDK version: `0.2.
|
|
7
|
+
SDK version: `0.2.2`.
|
|
8
8
|
|
|
9
9
|
Includes a hosted **Model Context Protocol** server: `pip install bee-sdk` then
|
|
10
10
|
run `bee-mcp` (stdio) to expose Bee's 11 domain tools to Claude Desktop, Cursor,
|
|
@@ -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
|