@kuralle-syrinx/core 2.1.1 → 3.1.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/package.json +1 -1
- package/src/reasoner.ts +6 -0
package/package.json
CHANGED
package/src/reasoner.ts
CHANGED
|
@@ -27,6 +27,12 @@ export interface ReasonerTurn {
|
|
|
27
27
|
readonly userText: string;
|
|
28
28
|
/** Full prior conversation context. The BRIDGE owns history (see §4.5). */
|
|
29
29
|
readonly messages: readonly ReasonerMessage[];
|
|
30
|
+
/**
|
|
31
|
+
* The front-model delegate tool-call arguments that triggered this turn, verbatim — so a
|
|
32
|
+
* realtime front can pass structured context (e.g. `reply_language`) to the reasoner beyond
|
|
33
|
+
* the extracted `userText`. Absent for cascade STT turns.
|
|
34
|
+
*/
|
|
35
|
+
readonly toolArgs?: Record<string, unknown>;
|
|
30
36
|
/** Barge-in / supersede cancellation. */
|
|
31
37
|
readonly signal: AbortSignal;
|
|
32
38
|
/** Present only when resuming a previously-suspended run (step 3). */
|