@frockbot/plugin-web 0.3.2 → 0.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/plugin-web",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -20,11 +20,11 @@
20
20
  "typecheck": "tsc --noEmit -p tsconfig.json"
21
21
  },
22
22
  "dependencies": {
23
- "@frockbot/kernel-contracts": "0.3.2",
23
+ "@frockbot/kernel-contracts": "0.3.3",
24
24
  "cordis": "4.0.0-rc.8"
25
25
  },
26
26
  "devDependencies": {
27
- "@frockbot/plugin-tools": "0.3.2",
27
+ "@frockbot/plugin-tools": "0.3.3",
28
28
  "@types/bun": "1.4.0",
29
29
  "typescript": "^7.0.2"
30
30
  },
package/src/agent.test.ts CHANGED
@@ -252,7 +252,10 @@ describe("the web-fetch Capability enablement", () => {
252
252
  expect({
253
253
  turnType,
254
254
  names: root.tools.schemas({ turnType }).map((schema) => schema.name),
255
- }).toEqual({ turnType, names: ["web_fetch"] });
255
+ }).toEqual({
256
+ turnType,
257
+ names: ["web_fetch", "get_dynamic_tools", "call_dynamic_tool"],
258
+ });
256
259
  }
257
260
  await root.fiber.dispose();
258
261
  });