@cobrowser/chatgpt 0.7.22 → 0.7.23-beta.1

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.
@@ -30,5 +30,11 @@ declare class BaseService {
30
30
  * @param error
31
31
  */
32
32
  handleErrors(error: AxiosError): void;
33
+ /**
34
+ * Sanitize ChatGPT response with our XSS validation package
35
+ *
36
+ * @param message
37
+ */
38
+ output(message: string | undefined): string | undefined;
33
39
  }
34
40
  export default BaseService;
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const axios_1 = __importDefault(require("axios"));
7
7
  const logger_1 = __importDefault(require("../logger"));
8
+ const xss_validation_1 = require("@cobrowser/xss-validation");
8
9
  class BaseService {
9
10
  /**
10
11
  *
@@ -99,5 +100,16 @@ class BaseService {
99
100
  }
100
101
  logger_1.default.error(`error message ${error.message}`);
101
102
  }
103
+ /**
104
+ * Sanitize ChatGPT response with our XSS validation package
105
+ *
106
+ * @param message
107
+ */
108
+ output(message) {
109
+ if (!message) {
110
+ return;
111
+ }
112
+ return xss_validation_1.XSSProtector.sanitize(message);
113
+ }
102
114
  }
103
115
  exports.default = BaseService;
@@ -54,7 +54,7 @@ class TranslationService extends BaseService_1.default {
54
54
  try {
55
55
  const response = yield this.request.post('', requestBody);
56
56
  return {
57
- firstChoice: this.getResponseFirstChoice(response),
57
+ firstChoice: this.output(this.getResponseFirstChoice(response)),
58
58
  usageTokens: this.getResponseUsageTokens(response),
59
59
  };
60
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cobrowser/chatgpt",
3
- "version": "0.7.22",
3
+ "version": "0.7.23-beta.1",
4
4
  "description": "chatgpt services to connect our projects with chatgpt api",
5
5
  "keywords": [
6
6
  "chatgpt",
@@ -22,6 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@cobrowser/logger": "^2.0.2",
25
+ "@cobrowser/xss-validation": "^1.0.8",
25
26
  "axios": "^1.6.1",
26
27
  "axios-mock-adapter": "^1.22.0",
27
28
  "openai": "^4.86.2"
@@ -39,5 +40,5 @@
39
40
  "bugs": {
40
41
  "url": "https://bitbucket.org/cobrowser/cb_utils/issues"
41
42
  },
42
- "gitHead": "28e27011208c1da21cc0de3aa4cb35246bbd8e05"
43
+ "gitHead": "7d9d8c6fe2a6beab099ee60a685d38599f443d25"
43
44
  }