@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blade-hq/agent-client",
3
- "version": "2610.0.0-beta.21",
3
+ "version": "2610.0.0-beta.22",
4
4
  "description": "Blade Agent 框架无关客户端:会话实时状态机、REST 通道、弹窗登录、页面协作。浏览器与 Node.js 通用。",
5
5
  "repository": {
6
6
  "type": "git",
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