@tiledesk/tiledesk-tybot-connector 0.2.108 → 0.2.109

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.
package/CHANGELOG.md CHANGED
@@ -17,6 +17,9 @@ available on:
17
17
  - Added flowError on JSONCondition when result = null
18
18
  - Added fix on Filler -->
19
19
 
20
+ # v0.2.109 -> test
21
+ - Fixed bug: GptTask doesn't work properly with trascript
22
+
20
23
  # v0.2.108 -> test
21
24
  - Added DirUnassign
22
25
  - Added chatbot_id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "0.2.108",
3
+ "version": "0.2.109",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -171,6 +171,7 @@ class DirGptTask {
171
171
  json.messages.push(message)
172
172
  }
173
173
  })
174
+ json.messages.push({ role: "user", content: filled_question });
174
175
  } else {
175
176
  let message = { role: "user", content: filled_question };
176
177
  json.messages.push(message);