omnius 1.0.196 → 1.0.198
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 +1 -1
- package/dist/index.js +4857 -3039
- package/docs/reference/configuration.md +6 -2
- package/docs/reference/rest-api.md +1 -0
- package/docs/rest/INDEX.md +2 -2
- package/docs/rest/QUICKREF.md +10 -0
- package/docs/rest/auth-and-scopes.md +9 -3
- package/docs/rest/endpoints/config.md +4 -1
- package/docs/rest/endpoints/run.md +16 -0
- package/docs/rest/endpoints/tools.md +20 -1
- package/docs/rest/examples/openai-sdk.md +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ WS /v1/voicechat/ws
|
|
|
113
113
|
For shared deployments, use bearer keys:
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
|
-
|
|
116
|
+
OMNIUS_REST_API_KEYS="read-key:read:grafana,run-key:run:ci:60:100000:3,admin-key:admin:ops" omnius serve
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
See [docs/reference/rest-api.md](docs/reference/rest-api.md) for the maintained endpoint inventory. The canonical machine contract is generated from [packages/cli/src/api/openapi.ts](packages/cli/src/api/openapi.ts).
|