@squidcloud/slack-client 1.0.455 → 1.0.457

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.
@@ -402,6 +402,12 @@ export interface BaseAiChatOptions {
402
402
  memoryOptions?: AiAgentMemoryOptions;
403
403
  /** Whether to disable the whole context for the request. Default to false. */
404
404
  disableContext?: boolean;
405
+ /**
406
+ * Whether to use the legacy knowledge base context mode, where KB results are fetched upfront
407
+ * and appended directly to the prompt. When false (default), the KB is exposed as a callable
408
+ * tool that the LLM can invoke on demand.
409
+ */
410
+ legacyKnowledgeBaseContext?: boolean;
405
411
  /** Rewrite prompt for RAG - defaults to false */
406
412
  enablePromptRewriteForRag?: boolean;
407
413
  /** Whether to include references from the source context in the response. Default to false. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/slack-client",
3
- "version": "1.0.455",
3
+ "version": "1.0.457",
4
4
  "description": "Squid Slack Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/client/src/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "assertic": "^1.3.0",
21
21
  "lodash": "^4.17.21",
22
- "@squidcloud/client": "^1.0.455",
22
+ "@squidcloud/client": "^1.0.457",
23
23
  "@slack/bolt": "^4.5.0"
24
24
  },
25
25
  "engines": {