@opensearch-project/agent-health 0.2.0 → 0.4.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/README.md +210 -298
- package/cli/dist/index.js +1438 -110
- package/deployment/cloudformation/agent-health-observability.yaml +571 -0
- package/dist/assets/index-BOIP5L7h.js +246 -0
- package/dist/assets/index-CU9YKpAL.css +1 -0
- package/dist/index.html +2 -2
- package/lib/dist/config/index.js +50 -2
- package/lib/dist/index.js +66 -6
- package/package.json +25 -8
- package/server/dist/app.js +7495 -2524
- package/server/dist/index.js +5531 -328
- package/dist/assets/index-4BAkkFzo.js +0 -267
- package/dist/assets/index-C3K5cBQr.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensearch-project/agent-health",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent Evaluation and Observability Framework",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"traces"
|
|
24
24
|
],
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=
|
|
26
|
+
"node": ">=20.0.0"
|
|
27
27
|
},
|
|
28
28
|
"bin": {
|
|
29
29
|
"agent-health": "./bin/cli.js"
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"cli/dist/",
|
|
40
40
|
"server/dist/",
|
|
41
41
|
"lib/dist/",
|
|
42
|
-
"dist/"
|
|
42
|
+
"dist/",
|
|
43
|
+
"deployment/cloudformation/"
|
|
43
44
|
],
|
|
44
45
|
"scripts": {
|
|
45
46
|
"dev": "vite",
|
|
@@ -65,15 +66,23 @@
|
|
|
65
66
|
"build:cli": "esbuild cli/index.ts --bundle --platform=node --format=esm --outdir=cli/dist --packages=external --external:inquirer",
|
|
66
67
|
"build:lib": "esbuild lib/index.ts lib/config/index.ts --bundle --platform=node --format=esm --outdir=lib/dist --packages=external",
|
|
67
68
|
"build:all": "npm run build && npm run build:server && npm run build:cli && npm run build:lib",
|
|
69
|
+
"start:observio": "cd observio-sample-agent && npm install --legacy-peer-deps --silent && npm run start:ag-ui",
|
|
70
|
+
"dev:all": "npm run start:observio & npm run dev:server",
|
|
68
71
|
"demo": "npm run build:all && node cli/dist/index.js",
|
|
69
72
|
"prepublishOnly": "npm run build:all"
|
|
70
73
|
},
|
|
71
74
|
"dependencies": {
|
|
72
75
|
"@ag-ui/core": "^0.0.41",
|
|
73
76
|
"@aws-sdk/client-bedrock": "^3.1000.0",
|
|
77
|
+
"@aws-sdk/client-bedrock-agent": "^3.1038.0",
|
|
78
|
+
"@aws-sdk/client-bedrock-agent-runtime": "^3.1038.0",
|
|
74
79
|
"@aws-sdk/client-bedrock-runtime": "^3.1000.0",
|
|
75
80
|
"@aws-sdk/credential-providers": "^3.1000.0",
|
|
76
81
|
"@opensearch-project/opensearch": "^3.5.1",
|
|
82
|
+
"@opentelemetry/api": "^1.9.1",
|
|
83
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.216.0",
|
|
84
|
+
"@opentelemetry/resources": "^2.6.1",
|
|
85
|
+
"@opentelemetry/sdk-trace-node": "^2.6.1",
|
|
77
86
|
"@opentelemetry/semantic-conventions": "^1.38.0",
|
|
78
87
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
79
88
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
@@ -116,7 +125,7 @@
|
|
|
116
125
|
"remark-gfm": "^4.0.1",
|
|
117
126
|
"tailwind-merge": "^3.4.0",
|
|
118
127
|
"tailwindcss-animate": "^1.0.7",
|
|
119
|
-
"uuid": "^
|
|
128
|
+
"uuid": "^14.0.0",
|
|
120
129
|
"yaml": "^2.8.2",
|
|
121
130
|
"zod": "^3.24.0"
|
|
122
131
|
},
|
|
@@ -126,6 +135,7 @@
|
|
|
126
135
|
"devDependencies": {
|
|
127
136
|
"@playwright/test": "^1.57.0",
|
|
128
137
|
"@tailwindcss/typography": "^0.5.19",
|
|
138
|
+
"@testing-library/dom": "^10.4.1",
|
|
129
139
|
"@testing-library/react": "^16.3.2",
|
|
130
140
|
"@types/cors": "^2.8.19",
|
|
131
141
|
"@types/dagre": "^0.7.52",
|
|
@@ -136,14 +146,16 @@
|
|
|
136
146
|
"@types/react": "^19.2.0",
|
|
137
147
|
"@types/react-dom": "^19.2.0",
|
|
138
148
|
"@types/supertest": "^6.0.3",
|
|
139
|
-
"@types/uuid": "^
|
|
149
|
+
"@types/uuid": "^11.0.0",
|
|
140
150
|
"@vitejs/plugin-react": "^4.2.1",
|
|
141
151
|
"autoprefixer": "^10.4.16",
|
|
142
152
|
"esbuild": "^0.27.2",
|
|
153
|
+
"fast-check": "^4.7.0",
|
|
143
154
|
"husky": "^9.1.7",
|
|
144
155
|
"jest": "^30.2.0",
|
|
145
156
|
"jest-environment-jsdom": "^30.2.0",
|
|
146
|
-
"
|
|
157
|
+
"nyc": "^18.0.0",
|
|
158
|
+
"postcss": "^8.5.12",
|
|
147
159
|
"shadcn": "^3.5.1",
|
|
148
160
|
"supertest": "^7.2.2",
|
|
149
161
|
"tailwindcss": "^3.4.0",
|
|
@@ -152,10 +164,15 @@
|
|
|
152
164
|
"tsc-alias": "^1.8.16",
|
|
153
165
|
"tsx": "^4.19.0",
|
|
154
166
|
"typescript": "^5.3.3",
|
|
155
|
-
"vite": "^7.3.1"
|
|
167
|
+
"vite": "^7.3.1",
|
|
168
|
+
"vite-plugin-istanbul": "^8.0.0"
|
|
156
169
|
},
|
|
157
170
|
"overrides": {
|
|
158
171
|
"minimatch": "^10.2.4",
|
|
159
|
-
"fast-xml-parser": "5.
|
|
172
|
+
"fast-xml-parser": ">=5.7.2",
|
|
173
|
+
"uuid": "$uuid",
|
|
174
|
+
"@anthropic-ai/claude-agent-sdk": {
|
|
175
|
+
"zod": "$zod"
|
|
176
|
+
}
|
|
160
177
|
}
|
|
161
178
|
}
|