@indra.ai/deva 1.5.59 → 1.5.61
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/LICENSE.md +1 -0
- package/index.js +5 -2
- package/package.json +10 -9
- package/tests/client.json +1 -1
- package/tests/index.js +4 -3
package/LICENSE.md
CHANGED
package/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
//
|
|
2
|
-
//
|
|
1
|
+
// ©2025 Quinn A Michaels; All rights reserved.
|
|
2
|
+
// Legal Signature Required For Lawful Use.
|
|
3
|
+
// Distributed under the Vedic License Agreement LICENSE.md
|
|
4
|
+
|
|
3
5
|
import {EventEmitter} from 'node:events';
|
|
4
6
|
import {randomUUID} from 'crypto';
|
|
5
7
|
import lib from './lib/index.js';
|
|
@@ -80,6 +82,7 @@ class Deva {
|
|
|
80
82
|
describe:
|
|
81
83
|
The assign bind function will bind the translate functions and parse functions
|
|
82
84
|
of the agent and bind their functionality to the state machine.
|
|
85
|
+
|
|
83
86
|
***************/
|
|
84
87
|
_assignBind() {
|
|
85
88
|
return new Promise((resolve, reject) => {
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "9f0bc743-d720-4320-832e-cf5edc3b7cf",
|
|
3
3
|
"name": "@indra.ai/deva",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.61",
|
|
5
5
|
"description": "The Deva Core",
|
|
6
6
|
"main": "index.js",
|
|
7
|
-
"copyright": "(c)2025 Quinn Michaels; All rights reserved.",
|
|
7
|
+
"copyright": "(c)2025 Quinn A Michaels; All rights reserved.",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "node tests"
|
|
@@ -14,16 +14,17 @@
|
|
|
14
14
|
"url": "git+https://github.com/indraai/deva.git"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
17
|
+
"Quinn",
|
|
18
|
+
"Quinn Michaels",
|
|
19
|
+
"Quinn A Michaels",
|
|
20
|
+
"Deva Core",
|
|
21
|
+
"Indra.ai",
|
|
22
|
+
"Deva",
|
|
23
|
+
"AI Framework"
|
|
23
24
|
],
|
|
24
25
|
"license": "VLA LICENSE.md",
|
|
25
26
|
"author": {
|
|
26
|
-
"name": "Quinn Michaels",
|
|
27
|
+
"name": "Quinn A Michaels",
|
|
27
28
|
"email": "quinn@indra.ai",
|
|
28
29
|
"url": "https://indra.ai/"
|
|
29
30
|
},
|
package/tests/client.json
CHANGED
package/tests/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
// ©2025 Quinn A Michaels; All rights reserved.
|
|
2
|
+
// Legal Signature Required For Lawful Use.
|
|
3
|
+
// Distributed under the Vedic License Agreement LICENSE.md
|
|
4
|
+
|
|
1
5
|
"use strict"
|
|
2
|
-
// Copyright (c)2025 Quinn Michaels; All rights reserved.
|
|
3
|
-
// Private License
|
|
4
|
-
// file LICENSE.md or http://www.opensource.org/licenses/mit-license.php.
|
|
5
6
|
import Client from './client.json' with {type:'json'};
|
|
6
7
|
const client = Client.DATA;
|
|
7
8
|
import Agent from './agent.json' with {type:'json'};
|