@yuku123/z-agent-frontend-component 0.1.2 → 0.2.0
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/dist/z-agent-frontend-component.es.js +4432 -3749
- package/dist/z-agent-frontend-component.umd.js +11 -11
- package/package.json +2 -2
- package/src/api/index.js +1 -0
- package/src/index.js +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuku123/z-agent-frontend-component",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "z-agent 共享前端组件 - Agent 应用 / 编辑器 / 工作流 / LLM / AK / MCP / OSS / Skill / Script / Product / Usage 等页面",
|
|
6
6
|
"keywords": [
|
|
@@ -74,4 +74,4 @@
|
|
|
74
74
|
"vite": "^6.2.0"
|
|
75
75
|
},
|
|
76
76
|
"style": "./dist/z-agent-frontend-component.css"
|
|
77
|
-
}
|
|
77
|
+
}
|
package/src/api/index.js
CHANGED
|
@@ -18,6 +18,7 @@ export const skillApi = makeApi('skillApi')
|
|
|
18
18
|
export const productApi = makeApi('productApi')
|
|
19
19
|
export const sceneApi = makeApi('sceneApi')
|
|
20
20
|
export const ossApi = makeApi('ossApi')
|
|
21
|
+
export const traceApi = makeApi('traceApi')
|
|
21
22
|
|
|
22
23
|
export {authRequest, ctcRequest}
|
|
23
24
|
export default request
|
package/src/index.js
CHANGED
|
@@ -68,6 +68,10 @@ export {default as ProductScene} from './pages/product/scene.jsx'
|
|
|
68
68
|
// 用量统计
|
|
69
69
|
export {default as UsageDashboard} from './pages/usage/index.jsx'
|
|
70
70
|
|
|
71
|
+
// Agent Trace 调试台 (FEATURE013 T7)
|
|
72
|
+
export {default as DebugPlayground} from './pages/trace/DebugPlayground.jsx'
|
|
73
|
+
export {default as TraceApp} from './pages/trace/index.jsx'
|
|
74
|
+
|
|
71
75
|
// API 客户端(也支持从 '@yuku123/z-agent-frontend-component/api' 单独 import)
|
|
72
76
|
export {
|
|
73
77
|
agentApi,
|