@vellumai/assistant 0.4.19 → 0.4.20

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": "@vellumai/assistant",
3
- "version": "0.4.19",
3
+ "version": "0.4.20",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "vellum": "./src/index.ts"
@@ -240,13 +240,8 @@ describe("buildSystemPrompt", () => {
240
240
  expect(section).toContain("Do NOT improvise Twilio setup instructions");
241
241
  });
242
242
 
243
- test("phone calls routing section excluded from low tier", () => {
244
- const result = buildSystemPrompt("low");
245
- expect(result).not.toContain("## Routing: Phone Calls");
246
- });
247
-
248
- test("includes memory persistence section in high tier", () => {
249
- const result = buildSystemPrompt("high");
243
+ test("includes memory persistence section", () => {
244
+ const result = buildSystemPrompt();
250
245
  expect(result).toContain("## Memory Persistence");
251
246
  expect(result).toContain("memory_save");
252
247
  expect(result).toContain("Saved > unsaved. Always.");
@@ -80,7 +80,6 @@ mock.module("../tools/network/script-proxy/index.js", () => ({
80
80
  mock.module("../util/platform.js", () => ({
81
81
  getRootDir: () => "/tmp",
82
82
  getDataDir: () => "/tmp",
83
- getRootDir: () => "/tmp",
84
83
  getSocketPath: () => "/tmp/vellum.sock",
85
84
  }));
86
85