@cobrowser/chatgpt 0.7.20 → 0.7.21

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.
@@ -58,12 +58,13 @@ class AssistantService extends BaseService_1.default {
58
58
  * @param message
59
59
  */
60
60
  getReply(message, runOptions = {}) {
61
- var _a;
61
+ var _a, _b;
62
62
  return __awaiter(this, void 0, void 0, function* () {
63
63
  if (!this.assistantId || !this.threadId) {
64
64
  logger_1.default.error('Assistant and Thread are required');
65
65
  return Promise.reject(new Error('Assistant and Thread are required'));
66
66
  }
67
+ logger_1.default.info(`New run with message: ${message} & options: ${JSON.stringify(runOptions)}`);
67
68
  const openai = new openai_1.default({ apiKey: this.openaiApiKey });
68
69
  let run;
69
70
  if (runOptions.functionOutputs && this.runId) {
@@ -78,7 +79,12 @@ class AssistantService extends BaseService_1.default {
78
79
  }
79
80
  else {
80
81
  yield openai.beta.threads.messages.create(this.threadId, { role: "user", content: message });
81
- run = yield openai.beta.threads.runs.create(this.threadId, Object.assign(Object.assign({ assistant_id: (_a = this.assistantId) !== null && _a !== void 0 ? _a : '', additional_instructions: runOptions.instructions }, (runOptions.definedSchema ? { response_format: runOptions.definedSchema } : {})), { tools: runOptions.tools }));
82
+ run = yield openai.beta.threads.runs.create(this.threadId, {
83
+ assistant_id: (_a = this.assistantId) !== null && _a !== void 0 ? _a : '',
84
+ additional_instructions: runOptions.instructions,
85
+ response_format: (_b = runOptions.definedSchema) !== null && _b !== void 0 ? _b : { type: 'text' },
86
+ tools: runOptions.tools
87
+ });
82
88
  }
83
89
  }
84
90
  if (run) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cobrowser/chatgpt",
3
- "version": "0.7.20",
3
+ "version": "0.7.21",
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": "6633e2fd243d8ca83fce1eda3f96249f9efa426e"
42
+ "gitHead": "3a426ebc382c861be00fdef6455b611075436ece"
43
43
  }