@cobrowser/chatgpt 0.7.21 → 0.7.22
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.
|
@@ -67,7 +67,8 @@ class CopilotService extends BaseService_1.default {
|
|
|
67
67
|
}
|
|
68
68
|
// main prompt used to instruct chatGPT to suggest some quick replies
|
|
69
69
|
const mainPrompt = `Propose some quick replies for the agent to be used on the following conversation
|
|
70
|
-
|
|
70
|
+
Your response must only contains a valid JSON array of strings like this:
|
|
71
|
+
["Reply 1", "Reply 2", "Reply 3"]. the conversation is:-\n${conversation}`,
|
|
71
72
|
// main prompt will be the whole conversation as string
|
|
72
73
|
mainPromptMessage = {
|
|
73
74
|
role: ChatGptMessage_1.ChatGptRole.USER,
|
|
@@ -155,9 +156,9 @@ class CopilotService extends BaseService_1.default {
|
|
|
155
156
|
const messages = data.flatMap((message) => message === null || message === void 0 ? void 0 : message.content.map((content) => ((content.type === 'text' && message.role === 'assistant') ? content.text : '')));
|
|
156
157
|
const assistantMessages = messages.filter(message => typeof message === 'object' && 'value' in message && typeof message.value === 'string');
|
|
157
158
|
if (assistantMessages.length) {
|
|
158
|
-
let answers = assistantMessages.map(message => message.value)
|
|
159
|
+
let answers = assistantMessages.map(message => message.value);
|
|
159
160
|
return {
|
|
160
|
-
firstChoice: answers,
|
|
161
|
+
firstChoice: JSON.stringify(answers),
|
|
161
162
|
threadId: run.thread_id,
|
|
162
163
|
usageTokens: run.usage,
|
|
163
164
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cobrowser/chatgpt",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.22",
|
|
4
4
|
"description": "chatgpt services to connect our projects with chatgpt api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chatgpt",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"bugs": {
|
|
40
40
|
"url": "https://bitbucket.org/cobrowser/cb_utils/issues"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "28e27011208c1da21cc0de3aa4cb35246bbd8e05"
|
|
43
43
|
}
|