fp-agent 0.1.1.dev0__tar.gz → 0.1.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.
Potentially problematic release.
This version of fp-agent might be problematic. Click here for more details.
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/PKG-INFO +4 -4
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/README.md +2 -2
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/pyproject.toml +1 -1
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/setup.cfg +0 -0
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp/main.py +0 -0
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp_agent.egg-info/PKG-INFO +4 -4
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp_agent.egg-info/SOURCES.txt +0 -0
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp_agent.egg-info/dependency_links.txt +0 -0
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp_agent.egg-info/entry_points.txt +0 -0
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp_agent.egg-info/requires.txt +1 -1
- {fp_agent-0.1.1.dev0 → fp_agent-0.1.2}/src/fp_agent.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fp-agent
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: 五块卵石 - 基于生命周期钩子的插件化 Agent 框架
|
|
5
5
|
Author: zpb
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,7 +17,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
17
17
|
Requires-Python: >=3.11
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
Requires-Dist: fp-core>=0.0.0
|
|
20
|
-
Requires-Dist: fp-
|
|
20
|
+
Requires-Dist: fp-terminal>=0.0.0
|
|
21
21
|
Provides-Extra: webui
|
|
22
22
|
Requires-Dist: fp-webui>=0.0.0; extra == "webui"
|
|
23
23
|
Provides-Extra: acp
|
|
@@ -172,7 +172,7 @@ cli:
|
|
|
172
172
|
```
|
|
173
173
|
fp # 主包(用户入口)
|
|
174
174
|
├── fp-core # 核心引擎(Agent 逻辑、LLM 交互、插件系统)
|
|
175
|
-
├── fp-
|
|
175
|
+
├── fp-terminal # 终端 REPL 界面
|
|
176
176
|
├── fp-webui # Web 界面
|
|
177
177
|
└── fp-acp # ACP 通信协议(JSON-RPC 2.0)
|
|
178
178
|
```
|
|
@@ -194,7 +194,7 @@ fp # 主包(用户入口)
|
|
|
194
194
|
| 依赖 | 版本 | 说明 |
|
|
195
195
|
|------|------|------|
|
|
196
196
|
| `fp-core` | >= 0.1.0 | Agent 核心引擎(必装) |
|
|
197
|
-
| `fp-
|
|
197
|
+
| `fp-terminal` | >= 0.1.0 | 终端 REPL(必装) |
|
|
198
198
|
| `fp-webui` | >= 0.1.0 | Web 界面(可选) |
|
|
199
199
|
| `fp-acp` | >= 0.1.0 | ACP 协议(可选) |
|
|
200
200
|
|
|
@@ -145,7 +145,7 @@ cli:
|
|
|
145
145
|
```
|
|
146
146
|
fp # 主包(用户入口)
|
|
147
147
|
├── fp-core # 核心引擎(Agent 逻辑、LLM 交互、插件系统)
|
|
148
|
-
├── fp-
|
|
148
|
+
├── fp-terminal # 终端 REPL 界面
|
|
149
149
|
├── fp-webui # Web 界面
|
|
150
150
|
└── fp-acp # ACP 通信协议(JSON-RPC 2.0)
|
|
151
151
|
```
|
|
@@ -167,7 +167,7 @@ fp # 主包(用户入口)
|
|
|
167
167
|
| 依赖 | 版本 | 说明 |
|
|
168
168
|
|------|------|------|
|
|
169
169
|
| `fp-core` | >= 0.1.0 | Agent 核心引擎(必装) |
|
|
170
|
-
| `fp-
|
|
170
|
+
| `fp-terminal` | >= 0.1.0 | 终端 REPL(必装) |
|
|
171
171
|
| `fp-webui` | >= 0.1.0 | Web 界面(可选) |
|
|
172
172
|
| `fp-acp` | >= 0.1.0 | ACP 协议(可选) |
|
|
173
173
|
|
|
File without changes
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fp-agent
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: 五块卵石 - 基于生命周期钩子的插件化 Agent 框架
|
|
5
5
|
Author: zpb
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,7 +17,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
17
17
|
Requires-Python: >=3.11
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
Requires-Dist: fp-core>=0.0.0
|
|
20
|
-
Requires-Dist: fp-
|
|
20
|
+
Requires-Dist: fp-terminal>=0.0.0
|
|
21
21
|
Provides-Extra: webui
|
|
22
22
|
Requires-Dist: fp-webui>=0.0.0; extra == "webui"
|
|
23
23
|
Provides-Extra: acp
|
|
@@ -172,7 +172,7 @@ cli:
|
|
|
172
172
|
```
|
|
173
173
|
fp # 主包(用户入口)
|
|
174
174
|
├── fp-core # 核心引擎(Agent 逻辑、LLM 交互、插件系统)
|
|
175
|
-
├── fp-
|
|
175
|
+
├── fp-terminal # 终端 REPL 界面
|
|
176
176
|
├── fp-webui # Web 界面
|
|
177
177
|
└── fp-acp # ACP 通信协议(JSON-RPC 2.0)
|
|
178
178
|
```
|
|
@@ -194,7 +194,7 @@ fp # 主包(用户入口)
|
|
|
194
194
|
| 依赖 | 版本 | 说明 |
|
|
195
195
|
|------|------|------|
|
|
196
196
|
| `fp-core` | >= 0.1.0 | Agent 核心引擎(必装) |
|
|
197
|
-
| `fp-
|
|
197
|
+
| `fp-terminal` | >= 0.1.0 | 终端 REPL(必装) |
|
|
198
198
|
| `fp-webui` | >= 0.1.0 | Web 界面(可选) |
|
|
199
199
|
| `fp-acp` | >= 0.1.0 | ACP 协议(可选) |
|
|
200
200
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|