@blade-hq/agent-client 2610.0.0-beta.21 → 2610.0.0-beta.22
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.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/session/agent-session.d.ts +0 -2
- package/dist/types/socket-events.d.ts +0 -2
- package/package.json +1 -1
- package/public-api.md +0 -1
|
@@ -53,8 +53,6 @@ export interface SendOptions {
|
|
|
53
53
|
deprecate_entry_ids: string[];
|
|
54
54
|
};
|
|
55
55
|
replayDecision?: "keep_replay" | "continue_replay";
|
|
56
|
-
/** 用户 @ 的知识库 id:后端先用原话在这些库里预检索,本轮 kb_search 也默认限定在这些库。 */
|
|
57
|
-
kbIds?: number[];
|
|
58
56
|
}
|
|
59
57
|
export declare function sessionStatusFromChatEnd(status: string | undefined): SessionStatus;
|
|
60
58
|
/**
|
|
@@ -32,7 +32,6 @@ export declare namespace ChatSendPayloadSchema {
|
|
|
32
32
|
[k: string]: unknown;
|
|
33
33
|
} | null);
|
|
34
34
|
type CompactionRatio = (number | null);
|
|
35
|
-
type KbIds = (number[] | null);
|
|
36
35
|
interface ChatSendPayload {
|
|
37
36
|
session_id: SessionId;
|
|
38
37
|
message: Message;
|
|
@@ -49,7 +48,6 @@ export declare namespace ChatSendPayloadSchema {
|
|
|
49
48
|
runtime_env?: RuntimeEnv;
|
|
50
49
|
app_context?: AppContext;
|
|
51
50
|
compaction_ratio?: CompactionRatio;
|
|
52
|
-
kb_ids?: KbIds;
|
|
53
51
|
[k: string]: unknown;
|
|
54
52
|
}
|
|
55
53
|
interface Message {
|
package/package.json
CHANGED
package/public-api.md
CHANGED
|
@@ -998,7 +998,6 @@ SDK_VERSION: string
|
|
|
998
998
|
|
|
999
999
|
```ts
|
|
1000
1000
|
askUserAnswer: Record<string, unknown> | undefined
|
|
1001
|
-
kbIds: number[] | undefined
|
|
1002
1001
|
mode: string | undefined
|
|
1003
1002
|
model: string | undefined
|
|
1004
1003
|
replayDecision: "keep_replay" | "continue_replay" | undefined
|