@soat/sdk 0.14.9 → 0.14.11
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/dist/index.d.cts +12 -3
- package/dist/index.d.mts +12 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -681,6 +681,10 @@ type CreateAgentGenerationRequest = {
|
|
|
681
681
|
* Logical action label recorded on the generation's usage meter, so spend can be rolled up per action (e.g. an A/B/C/D operating action).
|
|
682
682
|
*/
|
|
683
683
|
action_id?: string;
|
|
684
|
+
/**
|
|
685
|
+
* Per-turn override of the agent's `knowledge_config.extraction` default. Omit to follow the agent's stored config. Set `false` to suppress automatic memory extraction for this turn (e.g. an operational or tool-listing turn that would only add noise to a curated memory). Set `true` to force extraction on for this turn even when the agent does not enable it by default, provided the agent has a `write_memory_id`. Has no effect on streaming or `requires_action` turns, which never extract.
|
|
686
|
+
*/
|
|
687
|
+
extract?: boolean;
|
|
684
688
|
/**
|
|
685
689
|
* Per-generation knowledge retrieval override. Array filters (memory_ids, memory_tags, document_ids, document_paths) are unioned with the agent's stored knowledge_config; scalar fields (min_score, limit) use the per-generation value when present.
|
|
686
690
|
*/
|
|
@@ -1138,6 +1142,10 @@ type DiscussionRecord = {
|
|
|
1138
1142
|
[key: string]: string;
|
|
1139
1143
|
};
|
|
1140
1144
|
participants?: Array<ParticipantRecord>;
|
|
1145
|
+
/**
|
|
1146
|
+
* Non-blocking warnings for participant/synthesis prompt `{token}` references outside the allowlist ({topic}, {transcript}, {steps.deliberation}, {steps.deliberation.last}). Unknown tokens are not rejected — they pass through unresolved — so this is informational only.
|
|
1147
|
+
*/
|
|
1148
|
+
template_warnings?: Array<string>;
|
|
1141
1149
|
created_at?: Date;
|
|
1142
1150
|
updated_at?: Date;
|
|
1143
1151
|
};
|
|
@@ -2558,10 +2566,11 @@ type OrchestrationNode = {
|
|
|
2558
2566
|
[key: string]: unknown;
|
|
2559
2567
|
};
|
|
2560
2568
|
/**
|
|
2561
|
-
* Maps node artifact
|
|
2569
|
+
* Maps state write paths to values. Each key is a `state.<path>` destination (the `state.` prefix is optional); each value is JSON Logic (https://jsonlogic.com) evaluated against `{ "output": <node artifact>, "state": <run state> }` — e.g. `{ "summary": {"var": "output.content"} }` writes the artifact's `content` field to `state.summary`. The same evaluator as input_mapping/transform/condition; only the context differs.
|
|
2570
|
+
*
|
|
2562
2571
|
*/
|
|
2563
|
-
|
|
2564
|
-
[key: string]:
|
|
2572
|
+
state_mapping?: {
|
|
2573
|
+
[key: string]: unknown;
|
|
2565
2574
|
};
|
|
2566
2575
|
/**
|
|
2567
2576
|
* For agent nodes — JSON Schema for structured output parsing.
|
package/dist/index.d.mts
CHANGED
|
@@ -681,6 +681,10 @@ type CreateAgentGenerationRequest = {
|
|
|
681
681
|
* Logical action label recorded on the generation's usage meter, so spend can be rolled up per action (e.g. an A/B/C/D operating action).
|
|
682
682
|
*/
|
|
683
683
|
action_id?: string;
|
|
684
|
+
/**
|
|
685
|
+
* Per-turn override of the agent's `knowledge_config.extraction` default. Omit to follow the agent's stored config. Set `false` to suppress automatic memory extraction for this turn (e.g. an operational or tool-listing turn that would only add noise to a curated memory). Set `true` to force extraction on for this turn even when the agent does not enable it by default, provided the agent has a `write_memory_id`. Has no effect on streaming or `requires_action` turns, which never extract.
|
|
686
|
+
*/
|
|
687
|
+
extract?: boolean;
|
|
684
688
|
/**
|
|
685
689
|
* Per-generation knowledge retrieval override. Array filters (memory_ids, memory_tags, document_ids, document_paths) are unioned with the agent's stored knowledge_config; scalar fields (min_score, limit) use the per-generation value when present.
|
|
686
690
|
*/
|
|
@@ -1138,6 +1142,10 @@ type DiscussionRecord = {
|
|
|
1138
1142
|
[key: string]: string;
|
|
1139
1143
|
};
|
|
1140
1144
|
participants?: Array<ParticipantRecord>;
|
|
1145
|
+
/**
|
|
1146
|
+
* Non-blocking warnings for participant/synthesis prompt `{token}` references outside the allowlist ({topic}, {transcript}, {steps.deliberation}, {steps.deliberation.last}). Unknown tokens are not rejected — they pass through unresolved — so this is informational only.
|
|
1147
|
+
*/
|
|
1148
|
+
template_warnings?: Array<string>;
|
|
1141
1149
|
created_at?: Date;
|
|
1142
1150
|
updated_at?: Date;
|
|
1143
1151
|
};
|
|
@@ -2558,10 +2566,11 @@ type OrchestrationNode = {
|
|
|
2558
2566
|
[key: string]: unknown;
|
|
2559
2567
|
};
|
|
2560
2568
|
/**
|
|
2561
|
-
* Maps node artifact
|
|
2569
|
+
* Maps state write paths to values. Each key is a `state.<path>` destination (the `state.` prefix is optional); each value is JSON Logic (https://jsonlogic.com) evaluated against `{ "output": <node artifact>, "state": <run state> }` — e.g. `{ "summary": {"var": "output.content"} }` writes the artifact's `content` field to `state.summary`. The same evaluator as input_mapping/transform/condition; only the context differs.
|
|
2570
|
+
*
|
|
2562
2571
|
*/
|
|
2563
|
-
|
|
2564
|
-
[key: string]:
|
|
2572
|
+
state_mapping?: {
|
|
2573
|
+
[key: string]: unknown;
|
|
2565
2574
|
};
|
|
2566
2575
|
/**
|
|
2567
2576
|
* For agent nodes — JSON Schema for structured output parsing.
|