You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
packages/core/runtime.ts:
stop() can cause the program to crash.
change the below code is work well.
// it doesn't have a strict interface specification, and some don't have STOP methods
if (c && c?.stop) {
c.stop();
} else {
elizaLogger.log("client stop skip,", cStr, this.character.name);
}
The text was updated successfully, but these errors were encountered:
packages/core/runtime.ts:
stop() can cause the program to crash.
change the below code is work well.
The text was updated successfully, but these errors were encountered: