@cobrowser/chatgpt 0.7.23-beta.1 → 0.7.23-beta.2
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.
|
@@ -33,8 +33,8 @@ declare class BaseService {
|
|
|
33
33
|
/**
|
|
34
34
|
* Sanitize ChatGPT response with our XSS validation package
|
|
35
35
|
*
|
|
36
|
-
* @param
|
|
36
|
+
* @param data
|
|
37
37
|
*/
|
|
38
|
-
output(
|
|
38
|
+
output(data: string | undefined): string | undefined;
|
|
39
39
|
}
|
|
40
40
|
export default BaseService;
|
|
@@ -103,13 +103,20 @@ class BaseService {
|
|
|
103
103
|
/**
|
|
104
104
|
* Sanitize ChatGPT response with our XSS validation package
|
|
105
105
|
*
|
|
106
|
-
* @param
|
|
106
|
+
* @param data
|
|
107
107
|
*/
|
|
108
|
-
output(
|
|
109
|
-
if (!
|
|
108
|
+
output(data) {
|
|
109
|
+
if (!data) {
|
|
110
110
|
return;
|
|
111
111
|
}
|
|
112
|
-
|
|
112
|
+
const parsed = JSON.parse(data), translation = parsed.data[0].translation, sanitized = xss_validation_1.XSSProtector.sanitize(translation), encoded = xss_validation_1.XSSProtector.encode(sanitized);
|
|
113
|
+
parsed.data[0].translation = encoded;
|
|
114
|
+
console.log('data: ', data);
|
|
115
|
+
console.log('parsed: ', parsed);
|
|
116
|
+
console.log('sanitized: ', sanitized);
|
|
117
|
+
console.log('encoded: ', encoded);
|
|
118
|
+
logger_1.default.info({ data, parsed, sanitized, encoded }, ':: Sanitizing Response ::');
|
|
119
|
+
return JSON.stringify(parsed);
|
|
113
120
|
}
|
|
114
121
|
}
|
|
115
122
|
exports.default = BaseService;
|
|
@@ -52,6 +52,7 @@ class TranslationService extends BaseService_1.default {
|
|
|
52
52
|
],
|
|
53
53
|
};
|
|
54
54
|
try {
|
|
55
|
+
logger_1.default.info(`:: TranslationServicee.translate :: Translating...`);
|
|
55
56
|
const response = yield this.request.post('', requestBody);
|
|
56
57
|
return {
|
|
57
58
|
firstChoice: this.output(this.getResponseFirstChoice(response)),
|
|
@@ -90,6 +91,7 @@ class TranslationService extends BaseService_1.default {
|
|
|
90
91
|
],
|
|
91
92
|
};
|
|
92
93
|
try {
|
|
94
|
+
logger_1.default.info(`:: TranslationServicee.findTextLanguage :: Translating...`);
|
|
93
95
|
const response = yield this.request.post('', requestBody);
|
|
94
96
|
return {
|
|
95
97
|
firstChoice: this.getResponseFirstChoice(response),
|
|
@@ -128,6 +130,7 @@ class TranslationService extends BaseService_1.default {
|
|
|
128
130
|
],
|
|
129
131
|
};
|
|
130
132
|
try {
|
|
133
|
+
logger_1.default.info(`:: TranslationServicee.findTextLanguageBasedOnFrequency :: Translating...`);
|
|
131
134
|
const response = yield this.request.post('', requestBody);
|
|
132
135
|
return {
|
|
133
136
|
firstChoice: this.getResponseFirstChoice(response),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cobrowser/chatgpt",
|
|
3
|
-
"version": "0.7.23-beta.
|
|
3
|
+
"version": "0.7.23-beta.2",
|
|
4
4
|
"description": "chatgpt services to connect our projects with chatgpt api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chatgpt",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@cobrowser/logger": "^2.0.2",
|
|
25
|
-
"@cobrowser/xss-validation": "^
|
|
25
|
+
"@cobrowser/xss-validation": "^2.0.0",
|
|
26
26
|
"axios": "^1.6.1",
|
|
27
27
|
"axios-mock-adapter": "^1.22.0",
|
|
28
28
|
"openai": "^4.86.2"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"bugs": {
|
|
41
41
|
"url": "https://bitbucket.org/cobrowser/cb_utils/issues"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "15eb4c0a791004426ce3232ffb862fc1bd3de443"
|
|
44
44
|
}
|