@blade-hq/agent-client 1.2.0-beta.1 → 1.2.1-alpha.1
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.
|
@@ -29,6 +29,7 @@ export declare class ClientProjectionBuilder {
|
|
|
29
29
|
processEvent(event: RawEvent): ProjectionUpdate[] | null;
|
|
30
30
|
reset(): void;
|
|
31
31
|
seedSequence(maxSeq: number): void;
|
|
32
|
+
_seedTurns(turns: TurnProjection[]): void;
|
|
32
33
|
private onMemoryInject;
|
|
33
34
|
private onLoopTurn;
|
|
34
35
|
private onModeChange;
|
|
@@ -39,6 +40,7 @@ export declare class ClientProjectionBuilder {
|
|
|
39
40
|
private onBgTasksCompleted;
|
|
40
41
|
private onAskUserAnswer;
|
|
41
42
|
private onUserMessage;
|
|
43
|
+
private onPostChatFollowup;
|
|
42
44
|
private onDelta;
|
|
43
45
|
private onToolCallCreated;
|
|
44
46
|
private onResponseDone;
|
|
@@ -16,6 +16,7 @@ export declare namespace ChatSendPayloadSchema {
|
|
|
16
16
|
} | null);
|
|
17
17
|
type Model = (string | null);
|
|
18
18
|
type ThinkingOverride = (boolean | null);
|
|
19
|
+
type ReasoningLevel = (("off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "max") | null);
|
|
19
20
|
type Headless = boolean;
|
|
20
21
|
type OutputSchema = ({
|
|
21
22
|
[k: string]: unknown;
|
|
@@ -39,6 +40,7 @@ export declare namespace ChatSendPayloadSchema {
|
|
|
39
40
|
askuser_answer?: AskuserAnswer;
|
|
40
41
|
model?: Model;
|
|
41
42
|
thinking_override?: ThinkingOverride;
|
|
43
|
+
reasoning_level?: ReasoningLevel;
|
|
42
44
|
headless?: Headless;
|
|
43
45
|
output_schema?: OutputSchema;
|
|
44
46
|
whatif?: (WhatIfPayload | null);
|