@sprucelabs/sprucebot-llm 8.2.0 → 8.3.0

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.
@@ -3,3 +3,4 @@ export { default as SprucebotLlmBotImpl } from './bots/SprucebotLlmBotImpl';
3
3
  export { default as SprucebotLlmSkillImpl } from './bots/SprucebotLlmSkillImpl';
4
4
  export { OpenAiAdapter } from './bots/adapters/OpenAi';
5
5
  export * from './llm.types';
6
+ export { default as SprucebotLlmError } from './errors/SpruceError';
@@ -3,3 +3,4 @@ export { default as SprucebotLlmBotImpl } from './bots/SprucebotLlmBotImpl.js';
3
3
  export { default as SprucebotLlmSkillImpl } from './bots/SprucebotLlmSkillImpl.js';
4
4
  export { OpenAiAdapter } from './bots/adapters/OpenAi.js';
5
5
  export * from './llm.types.js';
6
+ export { default as SprucebotLlmError } from './errors/SpruceError.js';
package/build/index.d.ts CHANGED
@@ -3,3 +3,4 @@ export { default as SprucebotLlmBotImpl } from './bots/SprucebotLlmBotImpl';
3
3
  export { default as SprucebotLlmSkillImpl } from './bots/SprucebotLlmSkillImpl';
4
4
  export { OpenAiAdapter } from './bots/adapters/OpenAi';
5
5
  export * from './llm.types';
6
+ export { default as SprucebotLlmError } from './errors/SpruceError';
package/build/index.js CHANGED
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.OpenAiAdapter = exports.SprucebotLlmSkillImpl = exports.SprucebotLlmBotImpl = exports.SprucebotLlmFactory = void 0;
20
+ exports.SprucebotLlmError = exports.OpenAiAdapter = exports.SprucebotLlmSkillImpl = exports.SprucebotLlmBotImpl = exports.SprucebotLlmFactory = void 0;
21
21
  var SprucebotLlmFactory_1 = require("./bots/SprucebotLlmFactory");
22
22
  Object.defineProperty(exports, "SprucebotLlmFactory", { enumerable: true, get: function () { return __importDefault(SprucebotLlmFactory_1).default; } });
23
23
  var SprucebotLlmBotImpl_1 = require("./bots/SprucebotLlmBotImpl");
@@ -27,3 +27,5 @@ Object.defineProperty(exports, "SprucebotLlmSkillImpl", { enumerable: true, get:
27
27
  var OpenAi_1 = require("./bots/adapters/OpenAi");
28
28
  Object.defineProperty(exports, "OpenAiAdapter", { enumerable: true, get: function () { return OpenAi_1.OpenAiAdapter; } });
29
29
  __exportStar(require("./llm.types"), exports);
30
+ var SpruceError_1 = require("./errors/SpruceError");
31
+ Object.defineProperty(exports, "SprucebotLlmError", { enumerable: true, get: function () { return __importDefault(SpruceError_1).default; } });
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "@sprucelabs/spruce-test-fixtures"
10
10
  ]
11
11
  },
12
- "version": "8.2.0",
12
+ "version": "8.3.0",
13
13
  "files": [
14
14
  "build"
15
15
  ],