@indra.ai/deva.log 0.0.17 → 0.0.19
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/data.json +7 -20
- package/help/main.feecting +2 -10
- package/index.js +6 -1
- package/package.json +2 -2
package/data.json
CHANGED
|
@@ -23,33 +23,21 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"profile": {
|
|
26
|
-
"identity": "You are #LogDEVA in deva.world.",
|
|
27
|
-
"invoke": "#LogDEVA of deva.world",
|
|
28
26
|
"name": "Log Deva",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"gender": "Deva",
|
|
27
|
+
"pronouns": "He, Him",
|
|
28
|
+
"gender": "DEVA",
|
|
29
|
+
"owner": "Quinn Michaels",
|
|
33
30
|
"creator": "Quinn Michaels",
|
|
34
31
|
"created": "Sunday, May 21, 2023 at 11:18 PM",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"forest": "Pushkara",
|
|
38
|
-
"city": "Amaravati",
|
|
39
|
-
"region": "Svarga",
|
|
40
|
-
"land": "Visisipra",
|
|
41
|
-
"planet": "Arjika",
|
|
42
|
-
"loka": "Devaloka",
|
|
43
|
-
"verse": "Rikverse",
|
|
44
|
-
"system": "deva.world",
|
|
45
|
-
"describe": "You are Log Deva. Your duty is to manage the log files in deva.world. Your responsibilities include logging the varous client and agent interactions and activities in the deva.world multi-agent system.",
|
|
32
|
+
"system": "Deva.world.log",
|
|
33
|
+
"describe": "Log Deva manages the logs in Deva.world.",
|
|
46
34
|
"emoji": "/public/devas/log/emoji.png",
|
|
47
35
|
"avatar": "/public/devas/log/avatar.png",
|
|
48
36
|
"background": "/public/devas/log/background.png",
|
|
49
37
|
"color": "#fdff64",
|
|
50
38
|
"bgcolor": "#000000",
|
|
51
39
|
"voice": "onyx",
|
|
52
|
-
"style": "You are the master of Vedic style artwork and creative ideas.
|
|
40
|
+
"style": "You are the master of Vedic style artwork and creative ideas."
|
|
53
41
|
}
|
|
54
42
|
},
|
|
55
43
|
"vars": {
|
|
@@ -57,6 +45,7 @@
|
|
|
57
45
|
"init": "🟠 INIT",
|
|
58
46
|
"start": "🔵 START",
|
|
59
47
|
"enter": "🟢 ENTER",
|
|
48
|
+
"ready": "⭐️ Log Deva Ready!",
|
|
60
49
|
"stop": "🔴 STOP",
|
|
61
50
|
"exit": "🟡 EXIT",
|
|
62
51
|
"done": "🟣 DONE",
|
|
@@ -77,8 +66,6 @@
|
|
|
77
66
|
"page_token": ""
|
|
78
67
|
},
|
|
79
68
|
"ask": {
|
|
80
|
-
"max_tokens": 500,
|
|
81
|
-
"words": 200,
|
|
82
69
|
"history": []
|
|
83
70
|
},
|
|
84
71
|
"reply": {
|
package/help/main.feecting
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
|
-
::begin:center
|
|
2
|
-
image: /public/devas/::agent_key::/main.png
|
|
3
|
-
::end:center
|
|
4
|
-
|
|
5
1
|
# ::agent_name::
|
|
6
2
|
|
|
7
|
-
::
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
|
-
talk:#docs view devas/main:security
|
|
3
|
+
::agent_profile::
|
|
12
4
|
|
|
13
5
|
---
|
|
14
6
|
|
|
15
|
-
copyright: (c)
|
|
7
|
+
copyright: (c)2025 Quinn Michaels
|
|
16
8
|
|
|
17
9
|
::begin:hidden
|
|
18
10
|
#color = ::agent_color::
|
package/index.js
CHANGED
|
@@ -80,8 +80,13 @@ const LOG = new Deva({
|
|
|
80
80
|
const {uri,database} = this.services().personal.mongo;
|
|
81
81
|
this.modules.client = new MongoClient(uri);
|
|
82
82
|
this.vars.database = database;
|
|
83
|
-
this.prompt(
|
|
83
|
+
this.prompt(this.vars.messages.ready)
|
|
84
84
|
return resolve(data);
|
|
85
|
+
},
|
|
86
|
+
onError(err, data, reject) {
|
|
87
|
+
this.prompt(this.vars.messages.error);
|
|
88
|
+
console.log(err);
|
|
89
|
+
return reject(err);
|
|
85
90
|
}
|
|
86
91
|
});
|
|
87
92
|
export default LOG
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": 4148108755733,
|
|
3
3
|
"name": "@indra.ai/deva.log",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.19",
|
|
5
5
|
"author": "Quinn Michaels",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"copyright": "2025",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"url": "https://deva.space/devas/log"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@indra.ai/deva": "^1.
|
|
31
|
+
"@indra.ai/deva": "^1.4.10",
|
|
32
32
|
"@indra.ai/deva.error": "^0.0.10",
|
|
33
33
|
"mongodb": "^6.1.0"
|
|
34
34
|
}
|