@vibe-lark/larkpal 0.1.42 → 0.1.53
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.
- package/README.md +5 -0
- package/dist/main.mjs +2631 -808
- package/dist/mcp-server.mjs +2 -0
- package/package.json +6 -3
- package/scripts/sit/larkpal-agent-0.1.9-sit.mjs +586 -0
- package/sit/larkpal-agent-0.1.9-sit.md +184 -0
- package/sit/scenarios/sit-smoke.reference.md +8 -0
- package/sit/scenarios/sit-smoke.scenario.yaml +14 -0
package/README.md
CHANGED
|
@@ -50,6 +50,11 @@
|
|
|
50
50
|
| `LARKPAL_AGENT_LLM_API_KEY` | 火山方舟 API Key | - |
|
|
51
51
|
| `LARKPAL_AGENT_LLM_MODEL` | 模型 endpoint ID | `ep-20250327140538-xxxxx` |
|
|
52
52
|
| `LARKPAL_AGENT_MAX_TURNS` | Agent 最大对话轮数(可选) | `25` |
|
|
53
|
+
| `LARKPAL_AGENT_MCP_SERVER_URL` | larkpal-agent HTTP MCP Server 地址(可选) | `https://.../api/mcp` |
|
|
54
|
+
| `LARKPAL_AGENT_SCENARIO_PROVIDER_TYPE` | Scenario Provider 类型(可选) | `local` / `http` / `mcp` |
|
|
55
|
+
| `LARKPAL_AGENT_SCENARIO_PROVIDER_BASE_URL` | HTTP Scenario Provider base URL(type=http 时必填) | `https://...` |
|
|
56
|
+
| `LARKPAL_AGENT_SCENARIO_PROVIDER_CONFIG` | Scenario Provider JSON 配置(优先级最高,可选) | `{"type":"http","baseURL":"https://..."}` |
|
|
57
|
+
| `LARKPAL_AGENT_SCENARIO_DIRS` | local scenario manifest 目录,多个目录用 `:` 分隔(可选) | `/opt/larkpal/scenarios` |
|
|
53
58
|
|
|
54
59
|
---
|
|
55
60
|
|