@elizaos/server 1.5.13-alpha.1 → 1.5.13-alpha.2
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/dist/index.js
CHANGED
|
@@ -27454,7 +27454,7 @@ import express30 from "express";
|
|
|
27454
27454
|
// package.json
|
|
27455
27455
|
var package_default = {
|
|
27456
27456
|
name: "@elizaos/server",
|
|
27457
|
-
version: "1.5.13-alpha.
|
|
27457
|
+
version: "1.5.13-alpha.2",
|
|
27458
27458
|
description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
27459
27459
|
publishConfig: {
|
|
27460
27460
|
access: "public",
|
|
@@ -44429,17 +44429,17 @@ class AgentServer {
|
|
|
44429
44429
|
const preparedCharacter = encryptedCharacter(character);
|
|
44430
44430
|
return { character: preparedCharacter, plugins: finalPlugins };
|
|
44431
44431
|
}));
|
|
44432
|
+
const settings = await this.configManager?.loadEnvConfig();
|
|
44432
44433
|
const agentIds = await this.elizaOS.addAgents(preparations.map((p) => ({
|
|
44433
44434
|
character: p.character,
|
|
44434
|
-
plugins: p.plugins
|
|
44435
|
+
plugins: p.plugins,
|
|
44436
|
+
settings: settings || {}
|
|
44435
44437
|
})));
|
|
44436
44438
|
await this.elizaOS.startAgents(agentIds);
|
|
44437
44439
|
const runtimes = [];
|
|
44438
|
-
const settings = await this.configManager?.loadEnvConfig();
|
|
44439
44440
|
for (const id of agentIds) {
|
|
44440
44441
|
const runtime = this.elizaOS.getAgent(id);
|
|
44441
44442
|
if (runtime) {
|
|
44442
|
-
Object.assign(runtime, { settings });
|
|
44443
44443
|
await this.registerAgent(runtime);
|
|
44444
44444
|
if (this.database) {
|
|
44445
44445
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/server",
|
|
3
|
-
"version": "1.5.13-alpha.
|
|
3
|
+
"version": "1.5.13-alpha.2",
|
|
4
4
|
"description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"dev": "bun run build.ts --watch"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@elizaos/client": "1.5.13-alpha.
|
|
47
|
+
"@elizaos/client": "1.5.13-alpha.2",
|
|
48
48
|
"@types/node": "^24.0.1",
|
|
49
49
|
"prettier": "3.5.3",
|
|
50
50
|
"tsx": "4.19.4",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"which": "^4.0.0",
|
|
53
53
|
"ws": "^8.18.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "61eb80fb6edd45400b1ca170749a3409a47561a1",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@elizaos/core": "1.5.13-alpha.
|
|
58
|
-
"@elizaos/plugin-sql": "1.5.13-alpha.
|
|
57
|
+
"@elizaos/core": "1.5.13-alpha.2",
|
|
58
|
+
"@elizaos/plugin-sql": "1.5.13-alpha.2",
|
|
59
59
|
"@sentry/node": "^10.11.0",
|
|
60
60
|
"@types/express": "^5.0.2",
|
|
61
61
|
"@types/helmet": "^4.0.0",
|