@hasna/evals 0.1.21 → 0.1.23
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/LICENSE +2 -1
- package/README.md +13 -0
- package/dist/cli/index.js +32706 -0
- package/dist/index.js +27135 -0
- package/dist/mcp/index.js +33359 -0
- package/dist/server/index.js +27067 -0
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
Apache License
|
|
2
3
|
Version 2.0, January 2004
|
|
3
4
|
http://www.apache.org/licenses/
|
|
@@ -175,7 +176,7 @@
|
|
|
175
176
|
|
|
176
177
|
END OF TERMS AND CONDITIONS
|
|
177
178
|
|
|
178
|
-
Copyright 2026
|
|
179
|
+
Copyright 2026 Hasna, Inc.
|
|
179
180
|
|
|
180
181
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
182
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -240,6 +240,19 @@ evals_run_single(
|
|
|
240
240
|
→ PASS — The response correctly identifies Paris.
|
|
241
241
|
```
|
|
242
242
|
|
|
243
|
+
## HTTP mode
|
|
244
|
+
|
|
245
|
+
Shared Streamable HTTP transport for multi-agent sessions (stdio remains the default):
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
evals-mcp --http # http://127.0.0.1:8817/mcp
|
|
249
|
+
MCP_HTTP=1 evals-mcp # same
|
|
250
|
+
evals-mcp --http --port 8817 # explicit port
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
- Health: `GET http://127.0.0.1:8817/health` → `{"status":"ok","name":"evals"}`
|
|
254
|
+
- Override port with `MCP_HTTP_PORT` or `--port`
|
|
255
|
+
|
|
243
256
|
---
|
|
244
257
|
|
|
245
258
|
## License
|