@kuralle-agents/core 0.3.6 → 0.3.7

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.
@@ -61,6 +61,10 @@ export class Runtime {
61
61
  const effectTools = {
62
62
  ...(this.config.tools ?? {}),
63
63
  ...(opened.agent.effectTools ?? {}),
64
+ // Global tools (ADR 0001) are model-visible in speaking turns via the
65
+ // drivers; register their executors here too so a model call can actually
66
+ // run them. Visibility stays gated (not exposed during collect extraction).
67
+ ...(opened.agent.globalTools ?? {}),
64
68
  };
65
69
  const toolExecutor = new CoreToolExecutor({
66
70
  tools: effectTools,
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "git+https://github.com/kuralle/kuralle-agents.git",
7
7
  "directory": "packages/kuralle-core"
8
8
  },
9
- "version": "0.3.6",
9
+ "version": "0.3.7",
10
10
  "description": "A framework for structured conversational AI agents",
11
11
  "publishConfig": {
12
12
  "access": "public"
@@ -97,7 +97,7 @@
97
97
  "dotenv": "^16.4.0",
98
98
  "typescript": "^5.3.0",
99
99
  "zod": "^3.23.0",
100
- "@kuralle-agents/realtime-audio": "0.3.6"
100
+ "@kuralle-agents/realtime-audio": "0.3.7"
101
101
  },
102
102
  "dependencies": {
103
103
  "chrono-node": "^2.6.0",