@indra.ai/deva 1.1.24 → 1.1.26
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/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -114,8 +114,8 @@ class Deva {
|
|
|
114
114
|
enter: `🖖 ${this._agent.name} enter.`,
|
|
115
115
|
exit: `🚪 ${this._agent.name} exit.`,
|
|
116
116
|
done: `👍 ${this._agent.name} done.`,
|
|
117
|
-
devas_started: '
|
|
118
|
-
devas_stopped: '🛑 Devas have stopped',
|
|
117
|
+
devas_started: '🧞♂️🧞🧞♀️ #Devas are all doing their thing',
|
|
118
|
+
devas_stopped: '🛑 #Devas have stopped',
|
|
119
119
|
notext: `❌ ${this._client.name}, please provide with valid input.`,
|
|
120
120
|
method_not_found: `❌ ${this._client.name} you sure messed that up!`,
|
|
121
121
|
}
|
|
@@ -892,7 +892,7 @@ class Deva {
|
|
|
892
892
|
}
|
|
893
893
|
Promise.all(devas).then(() => {
|
|
894
894
|
this.state('devas_ready');
|
|
895
|
-
return resolve(this._messages.devas_started);
|
|
895
|
+
return resolve({text:this._messages.devas_started,prompt:this._agent.prompt});
|
|
896
896
|
}).catch(reject);
|
|
897
897
|
});
|
|
898
898
|
}
|