@peopl-health/nexus 1.5.10 → 1.6.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.
|
@@ -67,7 +67,7 @@ class BaseAssistant {
|
|
|
67
67
|
this.thread = thread;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
set_replies(replies) {
|
|
71
71
|
this.replies = replies;
|
|
72
72
|
}
|
|
73
73
|
|
|
@@ -230,8 +230,7 @@ class BaseAssistant {
|
|
|
230
230
|
if (!this.lastMessages) return [];
|
|
231
231
|
return [{
|
|
232
232
|
role: 'assistant',
|
|
233
|
-
content: `Últimos mensajes para ${code}:
|
|
234
|
-
${this.lastMessages}`
|
|
233
|
+
content: `Últimos mensajes para ${code}: \n${this.lastMessages}`
|
|
235
234
|
}];
|
|
236
235
|
}
|
|
237
236
|
|