@qatonic_innovations/qaios 0.3.1 → 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 +3 -1
- package/dist/index.js +2599 -217
- package/dist/migrations/0003_xray_capture.sql +75 -0
- package/dist/xray/scripts/xray-step-reporter.mjs +62 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,9 @@ The published package is `@qatonic_innovations/qaios`; the installed **command i
|
|
|
48
48
|
```
|
|
49
49
|
Prefer **OpenAI**? Set `llm.provider: openai` and export `OPENAI_API_KEY`
|
|
50
50
|
instead — see [Choose your LLM provider](#choose-your-llm-provider) below.
|
|
51
|
-
Keys are read from the environment and **never written to
|
|
51
|
+
Keys are read from the **environment** (`process.env`) and **never written to
|
|
52
|
+
disk** by QAIOS. QAIOS does not auto-load a `.env` file — export the key in
|
|
53
|
+
your shell (or use a `.env` runner like `dotenv-cli`) before running.
|
|
52
54
|
- **Playwright** in your project, for `qaios run` / `snapshot` / `explore` / `a11y`:
|
|
53
55
|
```bash
|
|
54
56
|
npm i -D @playwright/test && npx playwright install
|