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.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bee-sdk
3
- Version: 0.2.0
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
- SDK version: `0.1.1` (pre-release).
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
- SDK version: `0.1.1` (pre-release).
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.0"
30
+ __version__ = "0.2.2"
31
31
  __all__ = [
32
32
  "Bee",
33
33
  "AsyncBee",
@@ -69,7 +69,7 @@ class _BaseClient:
69
69
  h = {
70
70
  "Content-Type": "application/json",
71
71
  "Accept": "application/json",
72
- "User-Agent": "bee-sdk/0.2.0",
72
+ "User-Agent": "bee-sdk/0.2.2",
73
73
  }
74
74
  if self.api_key:
75
75
  h["Authorization"] = f"Bearer {self.api_key}"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "bee-sdk"
7
- version = "0.2.0"
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