@amaster.ai/employee-runtime-connector 0.1.1-beta.22 → 0.1.1-beta.24
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 +14 -0
- package/dist/amaster-runtime-daemon.mjs +1113 -2317
- package/dist/amaster-runtime.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,20 @@ The source of truth lives under this package's `src/` directory. The package bui
|
|
|
32
32
|
|
|
33
33
|
Runtime code belongs in the container image. Persist only connector state, the result outbox, and workspaces under the configured state directory.
|
|
34
34
|
|
|
35
|
+
## Contracted Pi model calls
|
|
36
|
+
|
|
37
|
+
Pi `model_call` commands with `model_call_output_contract_v1` keep provider and
|
|
38
|
+
model selection paired with the output ceiling. Command target fields have the
|
|
39
|
+
highest precedence, followed by `AMASTER_PI_PROVIDER` / `AMASTER_PI_MODEL`, then
|
|
40
|
+
the Pi profile's `defaultProvider` / `defaultModel`. Each selected precedence
|
|
41
|
+
layer must be a complete provider/model pair: a partial command or runtime
|
|
42
|
+
override fails closed instead of silently falling through to a lower-precedence
|
|
43
|
+
default. The daemon copies only the normalized default pair into the isolated
|
|
44
|
+
one-shot profile, validates that the resolved model exists, applies
|
|
45
|
+
`maxOutputTokens` to that exact model, and records the resolved target and source
|
|
46
|
+
in command-result diagnostics. Missing or unknown targets also fail closed
|
|
47
|
+
before Pi is spawned.
|
|
48
|
+
|
|
35
49
|
## Pi tool-argument transport guard
|
|
36
50
|
|
|
37
51
|
`AMASTER_PI_TOOL_ARGUMENT_GUARD_MODE` defaults to `shadow`; supported values are
|