farai 0.3.6 → 0.3.8
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 +12 -0
- package/dist/cli/index.js +6849 -3345
- package/dist/cli/index.js.map +138 -124
- package/docker/kali/Dockerfile +17 -2
- package/docker/kali/farai_mitmproxy_mcp.py +0 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -66,6 +66,18 @@ farai update rollback
|
|
|
66
66
|
|
|
67
67
|
Set `FARAI_CONTENT_MANIFEST_URL` for a private channel or local `file://` manifest, and `FARAI_CONTENT_DIR` to isolate the local content store. Set `FARAI_DISABLE_CONTENT_UPDATE=1` to disable the channel.
|
|
68
68
|
|
|
69
|
+
Run Farai's hermetic agent-loop regression suite without model credentials or Docker:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
farai eval --stream
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Custom JSON suites can assert responses, events, stop reasons, tool selection, tool argument subsets, tool order, and error budgets:
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
farai eval examples/eval-suite.json --output eval-result.json
|
|
79
|
+
```
|
|
80
|
+
|
|
69
81
|
## Status
|
|
70
82
|
|
|
71
83
|
Farai is under active development.
|