milu 0.0.1__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.
milu-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: milu
3
+ Version: 0.0.1
4
+ Summary: Milu (米鹿) — a unified agent framework: one interface for 9 LLM providers, built-in tools, MCP, sub-agents and multi-user serving. Placeholder release; full version coming soon.
5
+ Author: stephon
6
+ License: MIT
7
+ Keywords: agent,ai,framework,llm
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Milu 🦌
15
+
16
+ **Milu (米鹿)** — a unified agent framework: one interface for 9 LLM providers (Qwen, Kimi, GLM, DeepSeek, MiniMax, Doubao, ChatGPT, Gemini, Claude), with built-in tools, MCP support, sub-agents, skills, session persistence, auto context compaction, and a multi-user agent pool for serving.
17
+
18
+ 统一的多模型 Agent 框架:一套接口接入 9 家大模型,内置工具系统(含 MCP)、子 Agent、技能、会话持久化、上下文自动压缩与多用户并发资源池。
19
+
20
+ > ⚠️ This is a placeholder release to reserve the package name. The full framework is under active development and coming soon.
21
+ >
22
+ > 当前为占位版本,完整框架即将发布。
milu-0.0.1/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Milu 🦌
2
+
3
+ **Milu (米鹿)** — a unified agent framework: one interface for 9 LLM providers (Qwen, Kimi, GLM, DeepSeek, MiniMax, Doubao, ChatGPT, Gemini, Claude), with built-in tools, MCP support, sub-agents, skills, session persistence, auto context compaction, and a multi-user agent pool for serving.
4
+
5
+ 统一的多模型 Agent 框架:一套接口接入 9 家大模型,内置工具系统(含 MCP)、子 Agent、技能、会话持久化、上下文自动压缩与多用户并发资源池。
6
+
7
+ > ⚠️ This is a placeholder release to reserve the package name. The full framework is under active development and coming soon.
8
+ >
9
+ > 当前为占位版本,完整框架即将发布。
@@ -0,0 +1,21 @@
1
+ [project]
2
+ name = "milu"
3
+ version = "0.0.1"
4
+ description = "Milu (米鹿) — a unified agent framework: one interface for 9 LLM providers, built-in tools, MCP, sub-agents and multi-user serving. Placeholder release; full version coming soon."
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = { text = "MIT" }
8
+ authors = [{ name = "stephon" }]
9
+ keywords = ["agent", "llm", "ai", "framework"]
10
+ classifiers = [
11
+ "Development Status :: 2 - Pre-Alpha",
12
+ "Programming Language :: Python :: 3",
13
+ "Programming Language :: Python :: 3.10",
14
+ ]
15
+
16
+ [build-system]
17
+ requires = ["hatchling"]
18
+ build-backend = "hatchling.build"
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["src/milu"]
@@ -0,0 +1,7 @@
1
+ """Milu (米鹿) — 统一的多模型 Agent 框架。
2
+
3
+ 占位版本,完整框架即将发布。
4
+ Placeholder release — the full framework is coming soon.
5
+ """
6
+
7
+ __version__ = "0.0.1"