@squidcloud/backend 1.0.438 → 1.0.439

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.
@@ -7,4 +7,11 @@ export interface LlmServiceOptions {
7
7
  * Map of model names to their metadata.
8
8
  */
9
9
  models: Record<UserAiChatModelName, LlmModelMetadata>;
10
+ /**
11
+ * Whether this LLM service supports native function calling.
12
+ * If true, the service handles tool calls directly (e.g., via MCP).
13
+ * If false or undefined, the execution plan fallback will be used when tools are provided.
14
+ * Defaults to false.
15
+ */
16
+ supportsFunctions?: boolean;
10
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/backend",
3
- "version": "1.0.438",
3
+ "version": "1.0.439",
4
4
  "description": "Squid Cloud's backend SDK",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -34,7 +34,7 @@
34
34
  "typedoc-plugin-markdown": "^4.8.1"
35
35
  },
36
36
  "peerDependencies": {
37
- "@squidcloud/client": "^1.0.438"
37
+ "@squidcloud/client": "^1.0.439"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=20.0.0"